Ryan Burnette
Forum Replies Created
-
I never figured out what the problem was back when this happened to me. I reloaded my droplet from scratch and the problem did no reappear for me. It may be a problem with a particular version of some dependency package. I’d suggest using apt to make sure everything is up-to-date. Hope you find a solution to your issue.
Forum: Plugins
In reply to: [NextGEN Query] Non-functional in WP 4.0I’m no longer supporting it and plan to remove to from the WordPress plugin repository. The purpose of the plugin was to give admins a way to manage a gallery and developers a way to programmatically display that gallery.
Advanced Custom Fields’ Gallery Field does a better job of that.
I also don’t want to encourage anyone to use NextGen Gallery with it’s awful, awful security problems.
At times like this I wish WordPress extend had all the robust functionality of Github including forks and pull requests.
There was some talk about this in this other thread.
https://www.ads-software.com/support/topic/bug-in-16-jquery-is-loaded-in-frontend?replies=9
Bottom line, at this time the datepicker css is still loading in the front end. The
is_admin()
conditional could be used to fix the problem. It’s not a critical bug I’m sure the authors will address it at some point.I’ll check and get back to you.
Forum: Plugins
In reply to: [WP-Markdown] Markdown filterBut just in case anyone is like me and wants to use filters, here’s the code.
Forum: Plugins
In reply to: [WP-Markdown] Markdown filterDiscussed with the plugin author.
https://github.com/stephenharris/WP-MarkDown/issues/38#issuecomment-42439278
Forum: Plugins
In reply to: [WP-Markdown] Markdown filterHas anyone heard anything about this? I’d love to have a Markdown filter I can use from this plugin.
Forum: Plugins
In reply to: [WP-Markdown] Email linksThanks Stephen!
Forum: Plugins
In reply to: [WP-Markdown] problem with tables markdownIs there not a filter you can hook to to add additional processing to the content? It seems like there should be.
Forum: Plugins
In reply to: [NextGEN Query] NextGen Query Album/Gallery title?This isn’t directly related to the plugin. The plugin returns an object which you can modify using PHP.
That sounds like a bug to me. I’ll take a look when I work on this plugin again.
You could give my plugin NextGEN Query a try. It adds a “Query” menu to NGG with a “Sterilize Header” option to remove NGG’s additions to the header.
At the moment version 2.0.0 misses one script, but I’m going to fix that at some point.
It might take care of your issue.
The situation you describe has other factors, so I can’t say whether this will help you or not, but if you want to load a specific version of jQuery, rather than the one NGG wants you to load, this code added to your functions.php file will give you that control. At least it will right now. NGG changes a lot so you you never know when they’ll edit it and this won’t work anymore.
if (!is_admin()) add_action("wp_print_scripts", "my_jquery_enqueue", 999); function my_jquery_enqueue() { $jquery_version = "1.10.2"; // set the desired jquery version here wp_deregister_script('jquery'); wp_register_script('jquery', "http" . ($_SERVER['SERVER_PORT'] == 443 ? "s" : "") . "://ajax.googleapis.com/ajax/libs/jquery/" . $jquery_version . "/jquery.min.js", false, null); wp_enqueue_script('jquery'); }
Forum: Plugins
In reply to: [TechStudio's Pinterest Button For Images] Doesn't seem to workI believe the plugin has an issue right now where the default settings don’t load, so it doesn’t work until you go in, pick an option for everything and hit save.
I’ll fix this soon.
Ryan