Helen Hou-Sandi
Forum Replies Created
-
Forum: Plugins
In reply to: [Simple Page Ordering] WordPress version 4.8.2 compatibilityIt’s been tested and we’ve updated the compatibility to the latest, which is now 4.9.4.
Forum: Plugins
In reply to: [Simple Page Ordering] Am I supposed to be about to change parents?Hi! This plugin is still being maintained and we just did a new release yesterday. That said, it does not handle altering hierarchy, only the order of pages.
Forum: Plugins
In reply to: [Simple Page Ordering] Conflict with Yoast SEO pluginI’ve reproduced the issue, which seems to be related to any hidden columns, and opened an issue to track the technical fix over on GitHub: https://github.com/10up/simple-page-ordering/issues/11
Forum: Plugins
In reply to: [Simple Page Ordering] Normal Posts can not be dragged?Posts (and other non-hierarchical content types) are typically ordered chronologically and therefore do not have drag-and-drop ordering enabled. There are some workarounds available in the FAQ: https://www.ads-software.com/plugins/simple-page-ordering/#faq
Forum: Plugins
In reply to: [Ads.txt Manager] Problem with WP Engine InstallationHi there! Sorry to hear this isn’t working for you. I don’t know for sure but I suspect WP Engine’s setup might not route requests to all filetypes through the rewrite rule that allows WordPress to handle them. So in this case their server sees a request for
.txt
file, tries to find the actual file, and doesn’t fall through to WordPress when it doesn’t find it. Could you perhaps ask them and see if that’s the case?Forum: Plugins
In reply to: [Admin Color Schemer] Not compairable with PHP 7.0Hi all – sorry for neglecting this for so long. I’ll add this to my list of things to take a look at in the next couple of days. Glad to hear people find good use for it!
Forum: Hacks
In reply to: CPT slug crashing my template because it has the word 'for' in it?Strings in PHP (grossly simplified, things that aren’t numbers or special boolean words like
true
orfalse
) need to be in quotes. That one of your examples works is very likely a coincidence.Forum: Reviews
In reply to: [Admin Color Schemes] Very NiceThere will be another plugin for making your own schemes very soon ??
Forum: Requests and Feedback
In reply to: Security Review ProcessLinked for information; am not expressing any opinion on what could or should be written where: https://www.slideshare.net/govloop/word-press-as-anopen-source-projectwp-as-an-open-source-project-nacin (in particular, slides 16 and 17).
Forum: Plugins
In reply to: [MP6] Making the original color schemeIf we leave the admin as it is and leave changing the scheme up to the user, we are in essence saying that they are equally good. If that is the case, then why are we changing it at all? That is a bad experience. If we have to instruct the user to change a scheme to the latest and greatest, that is a failed experience.
Forum: Plugins
In reply to: [Really Simple Gallery Widget] Missing argument 2 for wp_kses()Sorry, I haven’t been able to take a look at forum messages for a while – had a baby and thus it’s toward the bottom of the priority pile. I know what the problem is, and the fix I would like to do is more substantial. It has nothing to do with wpdb::prepare().
Forum: Fixing WordPress
In reply to: Main $wp_query returning WAY too many posts.Meant to add that I could be wrong that that would help, but an overall thought ??
Forum: Fixing WordPress
In reply to: Main $wp_query returning WAY too many posts.Pagination means it has to do total found rows to calculate. If you don’t need pagination, you can set no_found_rows to true and it won’t do that anymore. Whenever I do a one-off WP_Query instance that doesn’t need pagination I set that arg for better performance.
Forum: Plugins
In reply to: [Really Simple Gallery Widget] Simple solution to gallery reloadYou’d need to do this via AJAX, otherwise you will indeed get the whole page reload you experienced. I’ve been thinking about changes I’d need to make it work well when used that way, but I don’t see that sort of behavior being a part of the core plugin itself at any point, as it’s not something I’d want to generalize.
Forum: Plugins
In reply to: [Peter's Post Notes] Use filters for configurable settings insteadDB syncing across environments is often asking for trouble ?? Anyway, thanks for the consideration!