CR
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: jQuery is not defined – Can't Upload Media FilesI am seeing this exact same issue. It’s happening with WordPress 3.3.1 and Chrome, but not in any other browsers. I am using the current latest version of Google Chrome – 17.0.963.79.
Here’s the really weird thing though – I have WordPress on many sites, and this is only happening to one of them. It’s a brand new install, no custom theme, no plugins yet.
There must be some kind of relation between the host and the issue, although I can’t imagine what. The host for the site with the issue is Network Solutions, while my other WordPress sites not having the issue with Chrome are on GoDaddy or other hosts. Very, very weird.
Forum: Plugins
In reply to: [Front-end Editor] [Plugin: Front-end Editor] Disable on specific pages?Okay, found another way to do what I want. I found this post on the plugin website: https://scribu.net/wordpress/front-end-editor/loading-only-on-certain-pages.html
Made a slight modification to the code given there and it works great for my purposes:
function front_editor_disable() {
if ( is_page() )
return true;
}
add_filter(‘front_end_editor_disable’, ‘front_editor_disable’);Since all the problem areas of my site are pages rather than posts. Would still love be able to pick specific posts / pages, but this works fine for me for now. Thanks!
Forum: Plugins
In reply to: [Front-end Editor] [Plugin: Front-end Editor] Disable on specific pages?I’m having a similar problem I think, I keep getting this error: Warning: Missing argument 2 for FEE_Field_Category::wrap() in filepath…etc.
But it only happens on a few pages, all of which are using the TDO Mini Forms plugin to display a form. I’m sure that’s the problem and simply want to disable front end editing on those pages. I added the code posted above to my functions file, but it doesn’t do anything. Do I need to add an add_action or somehow call the function to make it work? If so, where and what variables am I passing in?
Thanks!