Mark Jaquith
Forum Replies Created
-
Forum: Plugins
In reply to: [Page Links To] Page Links To GDPR Compliant?Hey all.
As of this writing, Page Links To only stores the URL information that you, the site operator, enter into it. It does not store any “PII” about visitors to your site. It also does not send any information to any external services.
Thus, in my **non-lawyer** personal opinion, the GDPR doesn’t apply to it.
Forum: Plugins
In reply to: [Page Links To] Version 2.11.0: brokenThanks for the report. I accidentally included some code that requires PHP 5.4, breaking the plugin for anyone who is running older versions. Version 2.11.1 should fix this issue.
P.S. This was definitely my oversight, but anyone affected by this should talk to their host about getting PHP updated — these old versions are insecure and slow!
Forum: Plugins
In reply to: [Page Links To] Version 2.11.0 throwing error in dashboardThanks for the report. I accidentally included some code that requires PHP 5.4, breaking the plugin for anyone who is running older versions. Version 2.11.1 should fix this issue.
P.S. This was definitely my oversight, but anyone affected by this should talk to their host about getting PHP updated — these old versions are insecure and slow!
Forum: Plugins
In reply to: [WP Help] Where is it?Yep, Publishing Help is the default. The idea is that you’ll want this to be visible to your site’s authors.
But you can also move the menu to a few different places (click “Settings” to do that).
Forum: Reviews
In reply to: [WP Help] Not workingThis happens if you try to view a document that does not exist (or got sent to the trash). Maybe you deleted your default document? Try making a new document the default document.
Forum: Fixing WordPress
In reply to: Class __PHP_Incomplete_Class has no unserializerI’ve reached out to a contact at GoDaddy to see if they have any idea what’s going on.
I think what this means is that a PHP object stored in the cache is being fetched (and then re-instantiated), but its class definition doesn’t exist. So PHP doesn’t know how to create it. I’m not entirely sure what would have caused this to start happening all of a sudden, but I’m gonna look into it.
Forum: Plugins
In reply to: [Gravity Forms + Custom Post Types] Checkboxes & TaxonomiesThis fix should be released in the public plugin!
Forum: Developing with WordPress
In reply to: Using by reference of WP_Query in posts_search filter hook?It passes in the WP_Query object which has a
setmethod.function my_callback($query) { $query->set('foo', 'bar' ); }Forum: Developing with WordPress
In reply to: Using by reference of WP_Query in posts_search filter hook?Use the
pre_get_postshook. Then use the->set()method to set query variables.Forum: Plugins
In reply to: [Page Links To] Does not open in new tabI’ve decided to look at a different approach to how “open in new tab” is implemented. Lots of sites have issues with it, usually because they’re loading content in dynamically and the plugin “misses” the links. The new approach will be a lot more foolproof, and will work even if the links appear on the page after the page loads initially.
But that won’t help you, themandinator. Your issue is that your theme (or maybe a plugin?) is forcibly removing jQuery from WordPress and using a Google CDN version that is like 4 years old. I’m going to try to put in some code that will “defend” against that situation — it’s not the first time I’ve encountered it.
Forum: Plugins
In reply to: [Page Links To] Links get filled with /null (mass 404 errors in log)Can you show me an example of this happening? This is the only report I’ve received about this.
Forum: Plugins
In reply to: [Page Links To] Security and Privacy after clicking on linkOnly if the destination URL is protected by the paywall. For instance, if you were to give me the link to the destination URL, would I be able to access it (as I don’t have a login)?
Forum: Plugins
In reply to: [Page Links To] Does not open in new tabPlease direct me to a page with a link that you expect to be opening a new tab. I have to see the issue in action.
Frequently the issue is caused because the link is loaded dynamically, so PLT doesn’t “see” it when it’s looking for links that should be made to open in a new tab.
Forum: Plugins
In reply to: [Page Links To] Doesn't work with an URL with @ in itTurns out this is an issue in WordPress core, which strips “@” from redirection URLs. I came up with a workaround for Page Links To, which is in version 2.9.6, just now released.
Forum: Plugins
In reply to: [Page Links To] I cannot get your plugin to workWP4.1It looks like the saving was broken for attachments. Try version 2.9.6, just released. I verified that it works there.