Eric Holmes
Forum Replies Created
-
Forum: Plugins
In reply to: [SrcSet Responsive Images for Wordpress] use SrcSet in Theme with shortcodeUsage would be the exact same to what you’d normally do.
echo wp_get_attachment_image( 5, 'medium' );Forum: Plugins
In reply to: [SrcSet Responsive Images for Wordpress] use SrcSet in Theme with shortcodeHey Gongl,
Our plugin is actually filtering into
the_post_thumbnail()andget_the_post_thumbnail(), you just pass the appropriate image size!This morning we’ve pushed an update which also adds support to
wp_get_attachment_image()andwp_get_attachment_image_src()! So there is no shortcode needed.Forum: Reviews
In reply to: [Etsy Importer] nice concept, but poor tutorials make it worthlessSylvia,
Plugin authors create them to give back to the community out of the goodness of their hearts – and support requests aren’t a paying gig. These things take time, which some of us do not have.
He has documentation, examples, etc. which make the plugin documentation more than comprehensive. Not every plugin author owns recording software to make video walk-throughs, and most plugins don’t merit one.
Please consider the amount of effort that went into making this, and realize that if you wanted same-day response time, you should probably find a web developer to pay for premium time.
Forum: Plugins
In reply to: [Post Type Switcher] Quick Edit doesn't change the post typeGreat! I think the select box was actually being duplicated, and it worked providing I set the post type inside the last select field. Perhaps having multiple CPTs were making multiple select fields.
Cheers.
Forum: Plugins
In reply to: [SrcSet Responsive Images for Wordpress] reverse the resultsHi Fred,
As Ben mentioned, please make sure you are testing within a browser that supports the srcset attribute.
The only way to test this currently is in Chrome, Opera, and Android mobile browsers. The others will be supported in Safari and Firefox in the next releases.
Could you paste the image tag output for us, to see if something has gone wrong in the output?
Thanks,
Eric
For the plugin authors, this issue is NOT happening when the plugin is activated on a single install, or a multisite install at the blog level. When network activated, it looks like you are calling something that utilizes a user check before pluggable.php is defined, which is causing 2 notices to appear:
Notice: Use of undefined constant AUTH_COOKIE – assumed ‘AUTH_COOKIE’ in /home/CLIENT/public_html/wp-includes/pluggable.php on line 788
Notice: Use of undefined constant LOGGED_IN_COOKIE – assumed ‘LOGGED_IN_COOKIE’ in /home/CLIENT/public_html/wp-includes/user.php on line 242
These constants are not yet defined, so you are probably just using the wrong action hook with your check.
This is PROBABLY the reason Page Preview (and other AJAX functions) are breaking.
Forum: Plugins
In reply to: [Multisite Language Switcher] Some PHP warnings when debug enabledI was just about to report this as well. Glad to see you are on top of this realloc! 🙂
This is definitely still an issue, with WP 3.6.1
Forum: Plugins
In reply to: [WP-PageNavi] Strict Standards issue ; WP 3.6Are you going to push this update any time soon?
Forum: Plugins
In reply to: [WP Native Dashboard] global $wp_admin_bar coming up nullThanks!
Thanks Bill. I was in contact and it seems they don’t support the local Real Estate Board, so I will be rolling out my own solution.
Thanks for the info Bill. Is there somewhere public (like in the support forum) that you posted the fixes you implemented?
Hi Bill,
Did you find an alternative for this service?
Forum: Fixing WordPress
In reply to: How to Update (Re-upload) Media FilesIf you don’t have FTP access, just remove the current media file and re-upload it.
if you don’t remove the file first, you will get ‘myfile1.jpg’ instead of ‘myfile.jpg’, WordPress does not overwrite files.
Removing the media item won’t remove any links to it in the page content, so once you re-upload the file, the links will work fine.
Forum: Fixing WordPress
In reply to: Can't target page marginsRemove the space between .singular and .page-id-1089, both classes are on the same element.
.page-id-1089.singular #content { margin:0; }