Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Robin, it’s showing the image again with the newest development build but no matter what “image size” I use in the code, it displays the same size image.

    add_filter( 'displayfeaturedimagegenesis_image_size', 'rgc_set_image_size' );
    function rgc_set_image_size ( $imagesize ) {
    	$imagesize = 'featured-image';
    	return $imagesize;
    }

    I’ve tried three different image sizes, including this small one above, and a large image is still displaying on the page. I also deleted and re-uploaded the image just to be safe.

    This is a brand new site with almost no plugins, so I don’t know why it wouldn’t be working. Happy to send you the URL to look at but I can’t post it publicly as it’s for a client. Is there an email address I can send it to?

    Hey Robin, I downloaded the development branch and installed and I can’t get the featured image to display at all. Here’s the code I tried:

    add_filter( 'displayfeaturedimagegenesis_image_size', 'rgc_set_image_size' );
    function rgc_set_image_size ( $imagesize ) {
    	$imagesize = 'my-image-size';
    	return $imagesize;
    }
    
    add_filter( 'display_featured_image_genesis_use_large_image', 'rgc_use_large_image' );
    function rgc_use_large_image( $post_types ) {
        $post_types[] = 'post';
        $post_types[] = 'page';
    
        return $post_types;
    }

    I also tried with just the 2nd function (which works with the production plugin but not development). Thoughts?

    Thread Starter beley

    (@beley)

    Thanks, that worked great!

    Thread Starter beley

    (@beley)

    Thanks but I can’t seem to find the crc_recent_post plugin anywhere… got a link to it by chance?

Viewing 4 replies - 1 through 4 (of 4 total)