It seems that the plugin you use to display the slider defines different sizes for the images used in the slider, and the width of the image displayed for each active slider.
Could you contact the plugin author, and ask them to make sure the image sizes called in the sidebar match the size used for the slider’s active images?
Do not hesitate to refer them to this thread if they need more details!
Thread Starter
007me
(@007me)
Jeremy,
This is not a plugin.
It’s built in in the theme. Nirvana theme.
I’m the one that put the values for the images in the slider, hich is 1920×600, and I’m the one to upload the images with the exact size of 1920X600.
And when I disable the Photon it is shown correctly.
Udi
Thanks for the extra details. I tried installing the theme, but couldn’t figure out how to configure the slider. The Settings page seems empty on my end:
http://i.wpne.ws/duvi
Since the slider doesn’t seem compatible with Photon, I’d recommend disabling Photon for the Slider images. You can do that by deactivating Photon on your home page, as explained here:
http://jetpack.me/2013/05/03/skip-a-image-with-photon/
Another alternative would be to edit your theme’s frontpage.php file, disable Photon right before the slider (line 27), and reenable it after the slider (line 135) as explained here:
https://ethitter.com/2013/07/disable-jetpacks-photon-module-in-specific-situations/
I hope this helps.
Thread Starter
007me
(@007me)
Hi Jeremy,
Strange that your Nirvana settings are empty.
I’ll try your recommendations tomorrow and will get back to you.
Thanks,
Udi
Thread Starter
007me
(@007me)
Hi Jeremy,
Tried:
function no_photon_by_page() {
if ( is_front_page() ) {
add_filter( 'jetpack_photon_skip_image', '__return_true');
}
}
add_action('wp', 'no_photon_by_page');
And also with is_home, but with no success.
Only disabling Photon works.
I wouldn’t like to play with the theme frontpage.php as it will be overwritten on updates.
Any other tips you can recommend?
Thanks.
I wouldn’t like to play with the theme frontpage.php as it will be overwritten on updates.
Could you try to create a Child theme, and make changes to a copy of frontpage.php there?
Let me know how it goes.
Thread Starter
007me
(@007me)
I have a child theme.
So can I place a copy of the frontgage.php there as well and make changes to it?
I will try
Let me know how how it goes!