Mark Jaquith
Forum Replies Created
-
Forum: Plugins
In reply to: [Page Links To] Searching for all linked posts in adminThere isn’t currently, but that’s a great idea, and I’m going to work on that: https://github.com/markjaquith/page-links-to/issues/63
Forum: Plugins
In reply to: [Page Links To] WordPress 5.0.2 editor buggingHuh, I haven’t seen this. But I am working on a new version with full support for the new “Gutenberg” editor here:
https://github.com/markjaquith/page-links-to/commits/issues/gutenberg
Forum: Plugins
In reply to: [Page Links To] What is the callback?(The
$thisonly works from within my plugin class, but that `CWS_PageLinksTo::get_instance() call will give you access to the singleton instance of the plugin object).Forum: Plugins
In reply to: [Page Links To] What is the callback?The callback is:
[CWS_PageLinksTo::get_instance(), 'meta_box']Forum: Plugins
In reply to: [Page Links To] .club domains supportYes, it should work just fine. I don’t do anything silly like look for three-character host extensions.
Forum: Plugins
In reply to: [Page Links To] PHP version 7.2 need to update.I am currently working on full support for the new “Gutenberg” editor here:
https://github.com/markjaquith/page-links-to/commits/issues/gutenberg
Forum: Plugins
In reply to: [Page Links To] When will this be updatedI am currently working on an update that will have full support for the new “Gutenberg” editor in WordPress 5.0.
https://github.com/markjaquith/page-links-to/commits/issues/gutenberg
Forum: Plugins
In reply to: [Page Links To] Curious question regarding future intentionsI am not going to charge for the core Page Links To plugin or remove any functionality from it. One of the main takeaways from the survey that I did was that people do not want a bunch of new things added to the core plugin. They like that it’s simple and targeted. There was interest in new features, but only via add-on plugins. So I’m looking into new features that I can put into a paid add-on plugin. I’m not going to remove functionality from the core plugin (in fact, I’m already working on some enhancements for Page Links To).
My goal is to use revenue from these new (and beyond the scope of Page Links To) add-on features to fund my time to continue maintaining and enhancing Page Links To. If a feature or enhancement seems like it relates to the core functionality of Page Links To, and doesn’t add a lot of code bloat or complexity, I’ll put it in Page Links To. Already have one of those coded and ready for release next week. But if a feature or enhancement is way beyond the core functionality goals or adds a lot of code and complexity, I’ll put it in an add-on.
- This reply was modified 7 years, 11 months ago by Mark Jaquith.
Forum: Plugins
In reply to: [Page Links To] Compatible with 4.9.xYep, it works.
I’d marked it as compatible, but there was an issue in my
readme.txtfile preventing the plugin directory from parsing it properly. Oops.Forum: Plugins
In reply to: [Page Links To] Does it work with Event List plugin?Hey @botwan,
It works for any custom post type that has
show_uiset totrue. Does Event List use a custom UI that might be hiding the PLT meta box?Forum: Plugins
In reply to: [Page Links To] Social Cards and Meta infoThe problem here, as @cgscomputers noted, is the redirect. Facebook and Twitter follow the redirect to the custom URL, and then look at “open graph” data there.
What I could do, and I’m considering, is make an option that lets you do a JavaScript-based redirect on that page. So any user who ends up at it (in a web browser) will get bounced through to your custom URL, but Facebook and Twitter, which won’t run the JavaScript, end up at the “dummy” page on your site, with all the Yoast SEO data. I’ll have to test to see if that works in more than just theory.
Forum: Plugins
In reply to: [Page Links To] open in new tab doesn’t workHi all,
Please try a more recent version. I removed the dependence of that code on jQuery, which fixed a lot of theme incompatibilities. If you are still having issues with links not opening in a new tab, please open a ticket and tell me your browser and version and also what site the issue is happening on.
Forum: Plugins
In reply to: [Page Links To] Does this plugin create a custon field for posts?Yes.
For storing the custom URL, it is
_links_to.If you check the box to open the link in a new tab, there will also be
_links_to_targetwith a value of_blank.Forum: Plugins
In reply to: [Page Links To] Is this Plugin Still Supported?It is still supported. There was an issue in the
readme.txtfile that was preventing the plugin directory from reading the supported version. That’s been fixed now!Forum: Plugins
In reply to: [Page Links To] Missing fileThe file is now named
new-tab.min.jsand it is most definitely correctly linked in the current version:wp_enqueue_script( 'page-links-to', self::get_url() . 'js/new-tab.min.js', array(), self::CSS_JS_VERSION, true );