Title: Eric Holmes's Replies | WordPress.org

---

# Eric Holmes

  [  ](https://wordpress.org/support/users/ew_holmes/)

 *   [Profile](https://wordpress.org/support/users/ew_holmes/)
 *   [Topics Started](https://wordpress.org/support/users/ew_holmes/topics/)
 *   [Replies Created](https://wordpress.org/support/users/ew_holmes/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/ew_holmes/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/ew_holmes/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/ew_holmes/engagements/)
 *   [Favorites](https://wordpress.org/support/users/ew_holmes/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 67 total)

1 [2](https://wordpress.org/support/users/ew_holmes/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ew_holmes/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/ew_holmes/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/ew_holmes/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/ew_holmes/replies/page/2/?output_format=md)

 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[SrcSet Responsive Images for Wordpress] Unlucky it doesn't work](https://wordpress.org/support/topic/unlucky-it-doesnt-work/)
 *  Plugin Contributor [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/unlucky-it-doesnt-work/#post-8536107)
 * Hey there,
 * Are you still using this plugin? I apologize for the extreme delay in response.
   Happy to help if you are!
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[SrcSet Responsive Images for Wordpress] not sure where plugin came from](https://wordpress.org/support/topic/not-sure-where-plugin-came-from/)
 *  Plugin Contributor [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [9 years, 5 months ago](https://wordpress.org/support/topic/not-sure-where-plugin-came-from/#post-8536099)
 * Hi Donna,
 * Our plugin is not installed to our knowledge with any other plugin in a packaged
   format. What version of WordPress are you using?
 * This plugin did become somewhat obsolete once WordPress 4.6 arrived, as srcset
   attributes are now built into WordPress.
 * It’s still useful if you wanted more control over the sizes and images displayed
   for srcset, though. If you decide to use it again, let us know if you have any
   questions!
 * Eric
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP REST API (WP API)] Is there a way to cache json responses](https://wordpress.org/support/topic/is-there-a-way-to-cache-json-responses/)
 *  [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/is-there-a-way-to-cache-json-responses/#post-6524859)
 * By the way, that wasn’t Eric replying to you. But do share if you get something
   working! 🙂
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP REST API (WP API)] Is there a way to cache json responses](https://wordpress.org/support/topic/is-there-a-way-to-cache-json-responses/)
 *  [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/is-there-a-way-to-cache-json-responses/#post-6524849)
 * I haven’t come across anything, but I have noticed when using the API that sometimes
   the posts don’t update right away. I think they may have built caching into it
   now. Best to look at the documentation for the plugin to confirm if that’s the
   case before exploring any further, [@wordpressmenow](https://wordpress.org/support/users/wordpressmenow/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP REST API (WP API)] Is there a way to cache json responses](https://wordpress.org/support/topic/is-there-a-way-to-cache-json-responses/)
 *  [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [10 years, 6 months ago](https://wordpress.org/support/topic/is-there-a-way-to-cache-json-responses/#post-6524836)
 * On the hunt for this, too.
 * At the moment, if you use composer in your stack, you can use this.
 * [https://github.com/Shelob9/jp-rest-cache](https://github.com/Shelob9/jp-rest-cache)
 * I don’t use composer, so I’m still on the hunt. Might have to write something
   myself :).
 * This [article](https://premium.wpmudev.org/blog/using-wordpress-rest-api/) has
   some good info.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SrcSet Responsive Images for Wordpress] SrcSet group's attribute scope](https://wordpress.org/support/topic/srcset-groups-attribute-scope/)
 *  Plugin Contributor [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/srcset-groups-attribute-scope/#post-6541747)
 * Hi Spinaker,
 * I don’t have any experience with using MetaSlider, but it looks like they surface
   their image tag attributes with the [`metaslider_{type}_image_attributes`](https://www.metaslider.com/documentation/metaslider_type_slider_image_attributes/)
   filter. You can generate the `srcset` value attribute by using `TNSrcSet::get_image_srcset(
   $attachment_id, $size );`. Example usage may be something like the following:
 *     ```
       add_filter( 'metaslider_flex_slider_image_attributes', 'spinaker_metaslider_srcset_attribute', 10, 3 );
       function spinaker_metaslider_srcset_attribute( $attributes, $slide, $slider_id ) {
           // $attachment_id and $size will need to be replaced by your own data
           $attributes['srcset'] = TNSrcSet::get_image_srcset( $attachment_id, $size );
           return $attributes;
       }
       ```
   
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SrcSet Responsive Images for Wordpress] Errors](https://wordpress.org/support/topic/errors-113/)
 *  Plugin Contributor [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/errors-113/#post-6273691)
 * This has been fixed in v1.4.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SrcSet Responsive Images for Wordpress] Please update PictureFill version used in the plugin](https://wordpress.org/support/topic/please-update-picturefill-version-used-in-the-plugin/)
 *  Plugin Contributor [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [10 years, 8 months ago](https://wordpress.org/support/topic/please-update-picturefill-version-used-in-the-plugin/#post-6455668)
 * Hi Kosmiq,
 * Thank you for reporting this error. I’ve just pushed up v1.4 which has the newest
   version of picturefill
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SrcSet Responsive Images for Wordpress] Errors](https://wordpress.org/support/topic/errors-114/)
 *  Plugin Contributor [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/errors-114/#post-6273405)
 * Hi Hotbelgo,
 * These notices are simple cases of a Boolean being passed to a foreach loop. I’ve
   addressed these and there will be a plugin update shortly.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SrcSet Responsive Images for Wordpress] PHP Warning Illegal offset](https://wordpress.org/support/topic/php-warning-illegal-offset/)
 *  Plugin Contributor [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/php-warning-illegal-offset/#post-6038632)
 * Hi Gongl, this has been addressed and will be included in the next update.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SrcSet Responsive Images for Wordpress] Parse error, cannot enable plugin](https://wordpress.org/support/topic/parse-error-cannot-enable-plugin/)
 *  Plugin Contributor [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/parse-error-cannot-enable-plugin/#post-6179039)
 * Hi Hahrens,
 * I cannot recreate this issue. If you’re still having troubles please let us know.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SrcSet Responsive Images for Wordpress] Parse error, cannot enable plugin](https://wordpress.org/support/topic/parse-error-cannot-enable-plugin/)
 *  Plugin Contributor [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [10 years, 11 months ago](https://wordpress.org/support/topic/parse-error-cannot-enable-plugin/#post-6178883)
 * Hi [@hahrens](https://wordpress.org/support/users/hahrens/),
 * If you have a moment, can you let us know what version of PHP you are running?
 * We think this may have to do with a PHP 5.3 feature that we may be using, and
   wanted to confirm you are using a 5.2.x version of PHP before further investigating
   the issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SrcSet Responsive Images for Wordpress] PHP Warning Illegal offset](https://wordpress.org/support/topic/php-warning-illegal-offset/)
 *  Plugin Contributor [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [11 years ago](https://wordpress.org/support/topic/php-warning-illegal-offset/#post-6038550)
 * For some more information – where are you seeing these warnings? Admin? Front
   end?
 * Thanks again,
 * Eric
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[SrcSet Responsive Images for Wordpress] PHP Warning Illegal offset](https://wordpress.org/support/topic/php-warning-illegal-offset/)
 *  Plugin Contributor [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [11 years ago](https://wordpress.org/support/topic/php-warning-illegal-offset/#post-6038549)
 * Hi gongl,
 * Thanks for finding this. In the next day or two, I will push up an update to 
   fix this.
 * Eric
 *   Forum: [Reviews](https://wordpress.org/support/forum/reviews/)
    In reply to:
   [[XPoster - Share to Bluesky and Mastodon] Too much work for just a feed](https://wordpress.org/support/topic/too-much-work-for-just-a-feed/)
 *  [Eric Holmes](https://wordpress.org/support/users/ew_holmes/)
 * (@ew_holmes)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/too-much-work-for-just-a-feed/#post-7950847)
 * Nicholas, perhaps if you were looking for a Twitter Feed only, you should have
   realized that wasn’t the intended use of this plugin. The name itself is “WP 
   to Twitter”, which clearly implies posting FROM WordPress TO a Twitter account,
   most likely when something is published.
 * I think this is an unfair review when (sorry to say) the error is on your interpretation
   of what the plugin’s functionality is, not the plugin itself.
 * In order for WordPress to gain **write** access to an account, it must establish
   an application.
 * Check your keywords when looking for plugins before you misuse and misunderstand
   them.
 * Regards,
 * Eric

Viewing 15 replies - 1 through 15 (of 67 total)

1 [2](https://wordpress.org/support/users/ew_holmes/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/ew_holmes/replies/page/3/?output_format=md)
[4](https://wordpress.org/support/users/ew_holmes/replies/page/4/?output_format=md)
[5](https://wordpress.org/support/users/ew_holmes/replies/page/5/?output_format=md)
[→](https://wordpress.org/support/users/ew_holmes/replies/page/2/?output_format=md)