Jeremy Pry
Forum Replies Created
-
Forum: Reviews
In reply to: [Redirect Emails on Staging] Does what it saysThanks for the good review!
Forum: Plugins
In reply to: [Polylang] [Plugin: Polylang] Bad Gateway with Polylang 1.4 on fresh installLooks like you can disregard my last comment. I see that
Polylang::do_for_all_blogs()is calling the_activate()method, not theactivate()method.Sorry about that 🙂
Forum: Plugins
In reply to: [Polylang] [Plugin: Polylang] Bad Gateway with Polylang 1.4 on fresh installBased on a quick look at your code, I think the problem is related to your
Polylang::activate()method. That method checks for the minimum WordPress version, and then it calls thePolylang::do_for_all_blogs()method. Thedo_for_all_blogs()method re-calls thePolylang::activate()method.This appears to be an infinite loop, which would account for the 502 timeout error.
I would recommend that your class methods do some checking to ensure there isn’t an infinite loop being created.
Forum: Hacks
In reply to: Password Protected Posts only for Logged Out UsersThere’s a ticket currently in Trac to add a filter to the
post_password_required()function. If this filter is added, it would make it very easy for a Plugin to do what you want to do.Ticket link:
https://core.trac.wordpress.org/ticket/20717Forum: Fixing WordPress
In reply to: Custom Rewrites not used by WordPress@ballarino Just an FYI, there is a “Subscribe to Topic” link on the right side of each forum thread that can be used to subscribe, instead of leaving a comment.
Does anyone have any thoughts or suggestions on this issue?
@joost de keijzer
I’m trying out your version that adds Featured image support, and I noticed that the normal “Insert into Post” link has been removed.
Is it possible to have both the featured image and the normal “Insert into Post” link? If so, what’s the best way to add the “Insert into Post” back?
Forum: Hacks
In reply to: I want to integrate wordpress engine in by normal html templateHere’s another link with even more information that will probably be relevant to you: http://codex.wordpress.org/Integrating_WordPress_with_Your_Website
Forum: Hacks
In reply to: I want to integrate wordpress engine in by normal html templateYou can design your site to not use themes, by setting the WP_USE_THEMES constant to “false”. There is some more information in the Codex: http://codex.wordpress.org/The_Loop
Forum: Hacks
In reply to: WP_Query in plugin causing post title issuesbcworkz,
Thanks for chiming in, but this isn’t a plugin or theme conflict. I did extensive troubleshooting to narrow down the exact source of the issue to the call to WP_Query, and then afterwards discovered this thread of someone else having the same issue, albeit with a slightly different method of using WP_Query.
Forum: Hacks
In reply to: WP_Query in plugin causing post title issuesHi r0bbiem,
Unfortunately I don’t have any other information to help, but I’ve discovered this same problem in a different way. The only workaround I’ve found is to ditch the WP_Query, but of course that leaves us without being able to do what we need to do.
Here’s the link to the forum topic I just started: http://wordpress.org/support/topic/wp_query-in-admin-bar-breaks-post-editor?replies=1
Forum: Plugins
In reply to: [Event Calendar] Calendar display breaks after update to 3.5Comment #11 on this page has the link to a file you can download. It also has instructions on what to do with the file.
I’ve tested the file, and it is working for me. However, I’m not planning on marking this thread resolved until it’s actually included in the plugin directly.
Forum: Plugins
In reply to: [Event Calendar] Apostrophe not workingThe answer should be here: http://code.google.com/p/wp-aec/wiki/FrequentlyAskedQuestions#All_apostrophes_in_the_event_detail_form,_returns_\’_when_I
I’ve just sent the email with my log file attached. If there is anything else I can provide, let me know.
Forum: Networking WordPress
In reply to: Custom meta not imported into Multisite registrationYes!! I finally got it!
I needed a plugin in /wp-content/mu-plugins/ instead of a “normal” plugin. Thanks for the guidance, I appreciate it!
Forum: Networking WordPress
In reply to: Custom meta not imported into Multisite registrationIt appears that none of my own code is happening, including adding to the primary blog as a Subscriber. So the user is indeed happening, but my code doesn’t appear to be executed at the time of activation.