@fouldsy99 – Your theme appears to be a “Premium” offering and its author appears to offer support here: https://accesspressthemes.com/support/ … I would suggest checking in with their support services to see how you may need to modify your theme (remember to take into consideration a child-theme for this).
~ Cais.
I would suggest please contact the theme author for help. Or if you can edit the code Please create a child theme and edit the single.php file. by adding this code snippet in place of feature image code.
<?php
if ( current_theme_supports( ‘get-the-image’ ) ) {
$fullimage = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), ‘full’ );
echo ‘‘ . get_the_image( array( ‘meta_key’ => ‘Thumbnail’, ‘size’ => ‘single-thumbnail’, ‘link_to_post’ => false, ‘image_class’ => ‘featured’, ‘attachment’ => false ) ) . ““;
}
?>
I couldn’t find feature image code in single.php, however I also have content_single 1 -4.php files
Theme developers are not very helpful, they just keep saying sorry it is not possible to add link on your features images on your post and pages
Stuck at a deadend
@fouldsy99 – “It’s WordPress … anything is possible!” Unfortunately, without knowing the theme (and as a “premium” its not really accessible to the public), the actual “featured image” code might not be obvious.
Depending on the theme’s structure and the authors philosophies I suspect that one (or more) of those “content-single” files would hold the featured image code.
This article might help you locate the code: https://developer.ww.wp.xz.cn/reference/functions/get_the_post_thumbnail/ although how it may have been implemented could be different and/or customized to a point where what you are looking for may not be possible in the sense that it could require extensive refactoring of the existing code to provide the enhancements you are looking for.
~ Cais.