Tagged: 

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #184453

    i know that to remove the mouseover you can add this to the custom.css
    article .image-overlay{
    display: none !important;}

    I want to use the feature image just as a header image for some posts. Problem is that a mouseover the featured image gives a link to the larger version even after removing the image overlay and act as if the featured image was an image attachment. I can t find where the controls for the featured image are. I was playing with enfold and it had options for the control of the Featured image like Link, no link and even a custom link field.

    I need the equivalent and I am surprised you removed this feature…or is it hidden somewhere?

    Also it seems the Featured image gets a different size based on the size of the original instead of blowing up or making smaller the original image to fit a fixed size. For example if you have a tall image the featured image will still look like an image attachment instead of a header image ( which I think is what the feature image means).

    Can you control the size of the featured images to force it to be a certain width and height no matter the size of the original?

    Thanks in advance

    #184642

    Hey Monsoon!

    Can you please give us a link to the actual article with the featured image? You can add this on your custom.css or Quick CSS to remove the featured image link:

    .big-preview.single-big a {
    pointer-events: none;
    }

    You can edit functions.php to control the size of the featured image.

    $avia_config['imgSize']['entry_without_sidebar']= array('width'=>1030, 'height'=>360 ); // images for fullsize pages and fullsize slider

    Change the width and the height then use this plugin to regenerate the thumbnails. http://wordpress.org/plugins/regenerate-thumbnails/

    Best regards,
    Ismael

    #217532

    Ismael provided code that removes both image links, the first from the main blog page and the second from the full post page. Great!

    Devin provided code that only removes the image link from the full post page in case you want only that link removed.
    https://kriesi.at/support/topic/how-to-remove-a-link-to-the-original-image-from-a-featured-image/

    #top.single-post .big-preview.single-big a,
    #top.single-post .small-preview {
    pointer-events: none;
    cursor: default;
    }

    Thanks to Ismael and Devin! Jas

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Enfold – Featured image remove link to image’ is closed to new replies.