Featured image and link

Posted in: Newsmag
Post count: 81

can I add images to a Featured image by a link from the network?

for example, in the text of the post, I can add a image by link from the network.

Post count: 23312

Hello vasik,

Unfortunately, the theme does not have any such an option that allows you to add any external link for your Featured Images, sorry!

Thanks for your understanding!

Post count: 81

thanks for the answer! Do you plan to make “add posted link”? This is done in the theme wpdrudge. http://wpdrudge.com/docs/adding-posted-links

Post count: 23312

Hello vasik,

Sorry but the theme does not have any such an option for this functionality and also, this plugin has not been tested with this, sorry!

Thanks for your understanding!

Post count: 8

I am looking for the same functionality as vasik. I found this:

// Add External Link to Featured Image with Custom Field

add_filter('post_thumbnail_html','add_external_link_on_page_post_thumbnail',10);
function add_external_link_on_page_post_thumbnail( $html ) {
if( is_singular() ) {
global $post;
$name = get_post_meta($post->ID, 'ExternalUrl', true);
if( $name ) {
$html = '' . $html . '';
}
}
return $html;
}

and use a custom field on the post page but this isn’t working. I have added this code the my functions.php in my child theme. I assume that maybe there is a script in the theme that is overriding this functionality. Would it be possible to get a small amount of guidance on this. I would very much appreciate it.

What I am trying to do is have the covers to the magazines uploaded as the featured image and have them link to the digital flipbook online. It would be great if this could work.

Post count: 23312

Hello homesofcolor,

Unfortunately, the theme has not been designed to use this functionality and we cannot make any additional implementation in this case because this task involves doing custom work and we cannot provide something like these services at the moment, sorry! You should implement it yourself through the code and if you are not aware of the steps which are needed to take in this case, please consider hiring a freelancer/developer to help you! Usually, we recommend the developers from studio.envato.com.

Thanks for your understanding!

Viewing 6 posts - 1 through 6 (of 6 total)
You must be logged in to reply to this topic.