Jake Goldman
Forum Replies Created
-
Thanks for the detailed report, including the exact spot in the code. Both issues are now fixed in version 1.0.3, which I’ve just pushed to the plugin directory.
- Editing repositories: the inline “Edit” form no longer fails to open when a repository has categories assigned (the savedCats issue you spotted). Existing repositories are repaired automatically on 1.0.3. update.
- Data on reinstall: this one was tricky since good hygiene defaults in WordPress are to remove all plugin data on uninstall. However, I can see how this could create undesired side effects in some reinstallation instances. Uninstalling now keeps your repository configuration and the link between previously generated posts and their releases, so a delete-and-reinstall no longer wipes your setup or risks duplicate posts. (Caches, scheduled tasks, and other settings are still removed on uninstall, as before.)
Please try 1.0.3 when you get a chance, and let me know if anything else comes up. Thanks again for the great bug report!
Forum: Reviews
In reply to: [Ads.txt Manager] Works perfectly on single WordPress and MultiSiteGlad to hear it! Thanks for the feedback.
Forum: Reviews
In reply to: [Ads.txt Manager] Does one thing. And does it well.Thank you for the feedback! Glad it’s working well for you.
Forum: Plugins
In reply to: [Restricted Site Access] Options-Reading.php Page is Completely Blank!Are you running WordPress 4.3.1? I’ve test a few instances running 4.3.1, and can’t replicate this problem… can either of you provide more information concerning other plugins you might have installed, and the web browser you’re using?
Forum: Reviews
In reply to: [Restricted Site Access] Could be a little more flexibleI don’t want to expand the plugins built in options / complexity, but this is very doable (for developers) by using the
restricted_site_access_is_restrictedfilter, which passing the initial request ($wp) along with it. You can check $wp for the page ID (or other properties) and override the default restriction behavior accordingly.It would be relatively simple to make a plugin that extends this one and adds a “Don’t restrict” option to individual posts and pages… I just don’t think it belongs in the lightweight core plugin.
WordPress’s sorting options – of which this is a natural extension – are not sticky (try sorting by other fields, too). There are ways to force a different default sort order on an admin post type list, but changing default WordPress behavior or assuming that everyone wants their default order changed isn’t something I’m going to add to the plugin.
Note that hierarchical post types sort by order, automatically.
Forum: Plugins
In reply to: [Simple Page Ordering] Sorting anything other than 'All' bugThis is fixed in 2.2.4
Forum: Plugins
In reply to: [Simple Page Ordering] Making Child PagesThe issue here is that I’m really trying not to alter the list of post types more than I have to. Adding those drag targets would require more complex manipulation of the table that would open it open to more compatibility conflicts. For now, I don’t plan on adding this feature.
Forum: Plugins
In reply to: [Simple Page Ordering] Not Compatible With Documentation v. N 1What’s documentation categories?
Forum: Plugins
In reply to: [Simple Page Ordering] URL Encoding BugFixed. Good find!
Forum: Plugins
In reply to: [Simple Page Ordering] error loading spinner.gif with custom folder structureYea, I know… just seemed cheap to package my own spinner or spit out more CSS in the page. I’ll fix it.
Forum: Plugins
In reply to: [Simple Page Ordering] Small bug in sort_by_order_linkThe escaping is essential to preventing XSS attacks. The URL can be overridden. What’s wrong with what was being returned?
Forum: Plugins
In reply to: [Simple Page Ordering] Where is the reorder tool?There’s no new screen – you drag and drop the rows right on the normal page list screen. Note that it doesn’t support non-hierarchical or page-like post types like, well, posts, out of the box. Should “just work” for pages.
Forum: Plugins
In reply to: [MCE Table Buttons] make tables default to 100%Do it with CSS – your developer can set an editor and front end stylesheet.
Forum: Plugins
In reply to: [Simple Page Ordering] error when 'orderby' is an array and not a stringFixed in 2.2.3. The change to the ORDER BY parameter in WP Query came late in the release cycle of 4.0!