ppehrson
Forum Replies Created
-
@stevejburge
I have used it for years and also earlier had this working (years ago). Recently upgraded my project from scratch.
I just sent an issue in your support area. I can see that someone else had the same issue a couple of weeks ago.Forum: Plugins
In reply to: [WebP Express] WP CLI Support for bulk convertI second this, that would be awsome! 🙂
Forum: Plugins
In reply to: [WebP Express] No avatarsPlease disregard. This was the a3 lazy load plugin’s fault.
Forum: Plugins
In reply to: [Easy Watermark] No watermarks on original ImageThis is NOT resolved and the support poster has a point!
Since WordPress 5.3, WP has had a feature so that it automatically scales any image above 2560 pixels (this is basically a nice feature). It then simply adds an image named _scaled and uses that in the code instead of the original.
This means for some reason that Easy Watermark does not watermark neither the original image nor the scaled one. I just tested it (again) and I have the same problem on a live site. It never scales the original image!
I just checked and double checked, both on my live site and on a sandbox. I suggest you do the same.
To the poster:
You can disable this new feature by following this guide. Basically, add the filter
add_filter( 'big_image_size_threshold', '__return_false' );in your theme functions. That way, Easy Watermark will work again, I just checked. (For some reason, I have a 150px thumb which is watermarked too, even though I disabled watermarks for the 150px thumb… that is another can of worms though.
BTW: If you like the feature of auto-scaling the full size picture, use Imsanity. That will likely work with Easy Watermark because it doesn’t do anything under the hood.
Yes, exactly. I would like an option to not display the 2FA option on the profile page.
It could be switchable, either a custom page, or display on the profile editing page.I imagine it’s just a webhook that should be optionally set/unset. But I am not that much into the WordPress API anymore.
I am going to email you the translation file. 🙂
- This reply was modified 5 years, 2 months ago by ppehrson.
I second that, and it actually shouldn’t be an issue to decide what custom taxonomy the plugin should work with 😉
Forum: Plugins
In reply to: [Proxy & VPN Blocker] Wordfence servers are blockedI cannot reproduce this with the Proxy & VPN Blocker.
Are you sure that something else doesn’t affect Wordfence?Some plugins block everything under wp-admin, which will affect wp-admin/admin-ajax.php, which is what Wordfence connects to.
- This reply was modified 7 years, 8 months ago by ppehrson.
I think I can tell you this because I have the same problem.
What happens if you visit admin-ajax.php? You get a “0” which means it is working.
However, if I do the same with curl on the server, I get a 404 error.This happens regardless of whether or not I activate or deactivate Wordfence on the site.
Maybe you should write your own handshake, because it seems like this is a MAJOR ISSUE for a lot of people!
- This reply was modified 7 years, 8 months ago by ppehrson.
Forum: Plugins
In reply to: [WP Word Count] How to count words in a custom post typeWell, it works exactly like any custom post type, so it would seem that something else is wrong. Other word counters that support custom post types work without any issue.
I chose your plugin because I thought it supported showing word count in the post / custom type admin overview pages. It doesn’t so it’s useless to me.
Forum: Plugins
In reply to: [WP Word Count] How to count words in a custom post typeOh, also by the way, it would be nice if the plugin showed the word count for each post/custom post type within the admin-side post overview page.
I have the same problem. So thekendog, I am interested in what stupid thing you did.
Forum: Plugins
In reply to: [Optimize Database after Deleting Revisions] innoDBForget all this php crap. The risk of breakage is higher due to the two extra layers that may fail (php and web server).
The command (in Linux) is:
To MyISAM:
D=voksenbasen; for t in $(mysql $D -B -e ‘SHOW TABLES’); do mysql $D -e “ALTER TABLE $t ENGINE=MyISAM”; doneTo InnoDB:
D=voksenbasen; for t in $(mysql $D -B -e ‘SHOW TABLES’); do mysql $D -e “ALTER TABLE $t ENGINE=InnoDB”; doneForum: Plugins
In reply to: [ALO EasyMail Newsletter] Latest post shortcode to support custom post types?Well, I will check but I can at least tell you up front that they function with every other plugin. But with these, ALO Easymail messes up, shows the wrong advertisement (not in the selected category), and it only shows one ad, no matter how many I select. Meaning I get the cat drop down and I can also select a single ad to insert in the newsletter. It’s only in the list of X last posts it doesn’t work.
I will get back to you on the public thing later. Thanks 🙂
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] plugin compatible smtp serverAhh. As Eventualo points out, there are several.
I use wp-mail-smtp myself, this is very effective.
Forum: Plugins
In reply to: [ALO EasyMail Newsletter] plugin compatible smtp serverA plugin for sending options? What do you mean?