tevko
Forum Replies Created
-
Forum: Plugins
In reply to: [RICG Responsive Images] Wrong image servedHey pawell3000, it looks like in this case you need to define custom crops for this slideshow. The plugin should account for this. We just updated to v3.1.0, so please feel free to update and give this a try
Forum: Plugins
In reply to: [RICG Responsive Images] Larger image being served than should beSorry this has been such a hassle! My guess is that it’s theme related. I would check the functions.php file in your theme folder. Make sure that image thumbnail support is on, and also make sure that there aren’t any filters stripping html out of the image tag
Forum: Plugins
In reply to: [RICG Responsive Images] Larger image being served than should beYes, the add media button, in the post editor, should produce a srcset attribute. Are you using the latest version of the plugin?
Forum: Plugins
In reply to: [RICG Responsive Images] Larger image being served than should beI took a look at the link you posted, and of the images that do have a srcset attribute on them, there are no issues. The code you pasted doesn’t have a srcset attribute present, which means it is not a responsive image.
If the wrong with is being loaded, then you’ll need to adjust the sizes attribute of the image with a filter. More on that here: https://github.com/ResponsiveImagesCG/wp-tevko-responsive-images#tevkori_get_sizes_string-id-size-args
Forum: Plugins
In reply to: [RICG Responsive Images] Larger image being served than should beWould you mind pasting some sample code?
Thanks for the feedback! This has been added to Github as an issue. Feel free to keep track here – https://github.com/ResponsiveImagesCG/wp-tevko-responsive-images/issues/160
Forum: Plugins
In reply to: [RICG Responsive Images] background-image?Hey Jeremy, thanks for the interesting question. While the plugin doesn’t handle background images, you can get a list of images and sizes for the psuedo srcset tag in that codepen you linked to. Here’s what that would look like in PHP with the plugin installed:
<?php echo tevkori_get_sizes( yourImageId, 'full' ); ?>
Forum: Plugins
In reply to: [RICG Responsive Images] Not Working on Header/Featured ImagesHey rebudke, it looks like that large image is being set with CSS, as a background image on the body tag
Forum: Plugins
In reply to: [RICG Responsive Images] Add Media from page editor not workingHey Steve, could you explain what the page editor is?
Hey, thanks for the question! There shouldn’t be any incompatibilities, but it wouldn’t hurt to do some testing. If you see anything working incorrectly, please feel free to file an issue at https://github.com/ResponsiveImagesCG/wp-tevko-responsive-images
Forum: Plugins
In reply to: [RICG Responsive Images] Problem with images not loading when using SSLHey Sherrie, would you mind browsing these two threads to see if you can find a solution?
https://www.ads-software.com/support/topic/broken-images-in-chrome
https://github.com/ResponsiveImagesCG/wp-tevko-responsive-images/issues/57
If you’re still seeing an issue, please file an issue on our github repository – https://github.com/ResponsiveImagesCG/wp-tevko-responsive-images – where we can track and resolve this issue much quicker. Thanks!
Forum: Plugins
In reply to: [RICG Responsive Images] Line 165 – Undefined index: sizesHey Jesse, thanks for your input. Would you mind filing an issue on our Github repository? https://github.com/ResponsiveImagesCG/wp-tevko-responsive-images
Forum: Plugins
In reply to: [RICG Responsive Images] Too large of images on iOSLooks like what you want to do is create a new image size in wordpress, and then when adding that image to your content, make sure you are adding the new sized image, not the full sized option. Configuring the sizes attribute will also help
Forum: Plugins
In reply to: [RICG Responsive Images] Incompatibility with Genesis Framework?Hi all, relevant Github issue created here – https://github.com/ResponsiveImagesCG/wp-tevko-responsive-images/issues/91
Please feel free to contribute!
Forum: Plugins
In reply to: [RICG Responsive Images] Safari loads biggest available sizeHey, if you’re lazy loading, the srcset and sizes attributes need to be lazy loaded. So your code should look like this –
<img width="1036" height="435" src="pic-692x291.jpg" data-sizes="(max-width: 1036px) 100vw, 1036px" class="attachment-hero wp-post-image" data-pfsrcset="pic-395x166.jpg 395w, pic-692x291.jpg 692w, pic-1036x435.jpg 1036w, pic.jpg 1036w" />