• Resolved iamwillp

    (@iamwillp)


    Hi Robin

    Thanks loads for your amazing plugin. I’m working on my new site and the plugin was working fine but has now stopped working ?? I’m guessing it stopped when I was testing a few other plugins (though I cant be sure) and not I cant get it back to normal. It’s displaying the featured image but it’s not making it 100%. Any advice / help would be amazing as I spent many hours trying to work it out and don’t know what to do next.

    Many thanks

    Will

    • This topic was modified 6 years, 10 months ago by iamwillp.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Robin Cornett

    (@littlerchicken)

    Wow, how beautiful!

    My initial guess would be to check your image size settings (under Settings > Media). Is the large image width set to 1600 or larger? It looks like your featured image is displaying at the “large” image size option, rather than the backstretch. This usually happens when the featured image is the same size or smaller than the site’s large image width, as the plugin is trying to not backstretch images that are too small.

    If this is what’s changed, the easiest way to manage it is to always make sure that your featured image is at least 1px wider than the site’s large image width.

    Alternatively, since 1600 is a pretty generous image size, you could use this filter to override the plugin’s behavior and basically tell it that it’s okay to display a 1600px wide image as a backstretch image:

    
    add_filter( 'display_featured_image_genesis_set_minimum_backstretch_width', 'prefix_force_backstretch_width' );
    /**
     * Change the minimum acceptable width for an image to display as backstretch.
     * May be helpful if your site's large image size is fairly large and you upload
     * images which are that size or smaller.
     * 
     * @return int
     */
    function prefix_force_backstretch_width() {
    	return 1600;
    };
    

    If you go this route, please use caution and make sure your site is backed up, etc. before editing theme files. HTH

    Thread Starter iamwillp

    (@iamwillp)

    Brilliant, thanks for the quick reply. I chenged the large image size in settings>>media and it’s all working correctly. Thanks again, I really appreciate this! Will

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Stopped working….’ is closed to new replies.