• I’ve installed the Featured Image in RSS & Malichimp EMail plugin.
    In the Mailchimp email from my RSS feed, two images display. Apparently this is because this theme uses a featured image but then featured image is in the blog post as well.

    Is there any way to get around this so that there will only be one image showing in my RSS feed email? Or some way to delete the featured image as the first thing in the blog post?

    Thanks

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • prodesignswpsupport

    (@prodesignswpsupport)

    Hi @kirstenclq,

    The ‘Featured Image’ that is set for a post is actually a WordPress core functionality and, the theme uses this core function to display the featured image and the theme doesn’t have any other option to select a featured image for the post.

    We may recommend getting in touch with the plugin author for the issue you’re facing.

    Hope this resolves the query you’re having regarding our theme.

    [ Signature deleted ]

    • This reply was modified 5 years, 5 months ago by Jan Dembowski.
    Thread Starter kirstenclq

    (@kirstenclq)

    Is there any way to remove the featured image from the body of the post?

    This is the problem.

    Thanks

    prodesignswpsupport

    (@prodesignswpsupport)

    Hi @kirstenclq,

    Yes there is a way, you would need to add a custom function to hide featured images from single blog page.

    You would need to create a child theme first and then paste the below code in the functions.php file of the child theme.

    function removeFeaturedImage( $html, $post_id, $post_image_id ) {
      if(is_single()) {
       return '';
      } else
       return $html;
      }
    }
    add_filter( 'post_thumbnail_html', 'removeFeaturedImage', 10, 3 );

    This should remove the image just as you need it to.

    [ Signature deleted ]

    • This reply was modified 5 years, 5 months ago by Jan Dembowski.
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Two images in RSS feed in Mailchimp’ is closed to new replies.