traffas
Forum Replies Created
-
Forum: Plugins
In reply to: [ImageMagick Engine] EXIF dataI guess the point of using the plugin is to make the images as small as possible, so small size is definitely what I’m going for…I just need the ability to make them small and keep the location data…I know that’s giving up a little bit of data, but it’s worth it.
Forum: Plugins
In reply to: [ImageMagick Engine] EXIF dataFor anyone else experiencing this issue, I found that commenting out line 484 solves the problem.
if ( $resize_mode == ‘size’ ) {
//$im->stripImage();
}
Hopefully we can get an admin checkbox or something in future versions that lets us control if we want metadata stripped on resize.I sent an email, but just used the “roll back to 1.7.4” option in the plugins menu and everything is working again! I’m not sure if that option was there earlier or if it’s something you just added, but thanks!
Still having the same issue – all Otter blocks except Masonry are missing. Existing blocks are broken on page update. It’s not browser-related and I’ve cleared all server caches and WordPress caches. Is there a way to revert to a previous version until a fix is released?
Hitting the same issue — Otter blocks are gone except for Masonry and updating any page using an existing Otter block breaks it. Can someone provide more information about which caches to clear? I’ve tried it in a fresh browser that has no history with the site in question and it doesn’t fix it. Private browsing also doesn’t fix it. It doesn’t seem related to the browser, at least for me. What can we do? I think this is definitely not resolved.
Forum: Plugins
In reply to: [GigPress] Bug? Incorrect Date? What?I’ve successfully been able to fix this bug by changing line 29 of output/gigpress_related.php to be
$date_condition = "IS NOT NULL";I have to fix it with each release, but it beats getting this error all the time.
Forum: Reviews
In reply to: [PageSpeed Module] Pay attention to WordPress versionYou’re quite right – I’m so sorry…I saw 5.6 which was the PHP version and not the WordPress version. I’ll be removing my review.
Forum: Plugins
In reply to: wp_notify_postauthor doesn't appear to be activeI think I figured it out. The wp_notify_moderator checks to see if the post author (why?!?) can “edit_comment” – a capability that is listed as added in WordPress 3.1 but not explained in the Codex – http://codex.wordpress.org/Roles_and_Capabilities#edit_comment
I ended up having to redefine wp_notify_moderator to disable author comment notifications.
Hopefully this explanation helps someone else.
Forum: Plugins
In reply to: wp_notify_postauthor doesn't appear to be activeSo after further digging, it seems I was wrong about my expectations. It seems ( around line 1400 in wp_includes/comment.php) that wp_notify_postauthor is only triggered when the comment is a approved.
So why, then, is the post author being notified by wp_notify_moderator? Shouldn’t this function only notify the moderator and not the author?
Forum: Plugins
In reply to: [WordPress HTTPS (SSL)] Preview no longer working on secure subdomainAny resolution to this problem? I’m seeing the same thing.
Forum: Plugins
In reply to: [W3 Total Cache] Plugin tried to edit .htaccess but failed error …Any luck with this? I’m experiencing the same problems.
Forum: Plugins
In reply to: [Debug Bar] Non-WordPress Queries in Debug BarI would sure like to know the answer to this question as well. I’m not interested in debugging WordPress, only my own plugins.
Forum: Plugins
In reply to: [Contact Form 7] Spinning Icon, message sends, but no confirmationI’ve actually solved this problem (CF7 v. 3.3.2 and WP 3.5 and earlier) by changing a couple of lines in the modules/special-mail-tags.php file.
Change line 8 to
function wpcf7_special_mail_tag( $output, $name, $html=false ) {And change line 82 to
function wpcf7_special_mail_tag_for_raw_post( $output, $name, $html=false ) {Whatever is calling these functions isn’t passing the html variable, so providing a default solves the problem of some forms sending but not displaying a success message.
Forum: Plugins
In reply to: [W3 Total Cache] [Plugin: W3 Total Cache] Disable W3C for a page and subpagesWas there ever a resolution to know for sure if a page is not being cached? Is it the inclusion of the “request URI is rejected” language that says it’s not cached? If that’s not there, can we assume it’s being cached?
Is there a better documentation somewhere for the DONOTCACHEPAGE options than that which is included in the FAQ?