From the GitHub-Wiki
The 'front_end_editor_disable'-filter
Use this filter if you want to completely disable the plugin for certain URLs.
Callback arguments:
bool $disable: The current state. Default: false
You can use conditional tags: Conditionals tags return bool true/false, which means, if you want to disable it on a page, simply use is_page(), as it returns true for pages…
Disable FEE on pages, as a (mu)plugin.
<?php
/** Plugin Name: (#73660) Disable Front Page Editor on pages */
function wpse73660_disable_on_author_pages( $disable )
{
return is_author();
}
add_filter( 'front_end_editor_disable', 'wpse73660_disable_on_author_pages' );
Related Posts:
- How to add “Stick this post to the front page” to front end?
- Handling jQuery Component Collision
- Let readers suggest edits from the frontend
- How to notify users of blog updates a la Admin Plugin Update notifications?
- Using rewrite rule to access a view of a plugin from home page
- Restrict backend but allow to use post.php?action=delete&post=POSTID from front-end
- Datepicker not supporting timepicker
- Frontend editing, Frontend user dashboard
- How could I execute my plugin just in frontend (not in backend)
- Handling jQuery Component Collision
- Preview featured image using frontend post plugin
- Implement Autocomplete for a custom field on WordPress Plugin Frontend
- How to add a full edit link to front-end editor?
- Show an image in my header.php
- ob_start() combined with wp_query
- Front end inline editing?
- How to call plugin functions in a custom template
- Add script into front from my plugin
- Fullscreen Video/GIF Intro
- AJAX on Front-End Button Click not working – Custom Plugin
- How to handle WordPress Plugin Front-end AJAX Call [duplicate]
- Front-end CSS Library for plugin [closed]
- How to do the simplest possible frontend ajax call from a plugin?
- Enqueue script: link not working in page source
- How to request admin-ajax.php correctly when wordpress URL and site URL are different?
- How to auto strip hyperlinks & images in wordpress post
- Create a link which allows visitors to disable a plugin?
- Categories from front-end, checkbox selection doesn’t work
- Effeciently adding Checkboxes to TablePress table cells
- Push Contact form 7 variable to front end after submission
- Adding shortcodes to multiple pages with function
- WordPress User profile with Avatar upload on the front end without plugin?
- WordPress website working fine on localhost but not displaying front pages on webhost
- How To Toggle User_Meta in frontend in a form using PHP
- Unset plugins on front-end belonging to specific category
- How to fix blog article view and share #’s?
- How to upload PDF from Front-End and post automatically?
- What action or filter can I use to change all the html returned from server for a page?
- Front End Page Not Loading Header Footer
- What action/hook do I need to register to have my plugin handle front-end editing?
- ‘Easy Template Path Hints’ for WordPress?
- Why doesn’t a form need an ‘action’ with a plugin that uses the post data?
- How to add featured image on front end form?
- AJAX doesn’t pass variables to the php function in the plugin
- Working on fixing wp-front-end-editor, encountering undefined index
- Get a submitted value from front end post form for single template
- WordPress User Frontend Editing Custom Fields
- custom registration form [duplicate]
- map urls to plugins
- Display Any Field fromAdmin Panel in Frontend via Shortcode?
- Custom Login and Password Reset for BuddyPress Website
- How to add entity in WordPress that have metadata such as name, age
- Login with OpenID, similar to Stack Exchange sites?
- Has anyone been able to get the aweber plugin to work
- wp_nav_menu(); Outside WordPress installation
- Install plugin remotely
- Best Apache Log Analyzer Plugin? [closed]
- Insert code after tag without using functions.php?
- How to Make a Custom Grid View
- Extend the Admin Post/Edit page
- Can wp_script_is used in pluginA check if a script is being enqueued/registered from pluginB?
- WP theme with Backbone
- Can’t get title of latest post
- How to remove all javascript in a theme wordpress?
- Display success message after wp_update_post
- Global variables during plugin activation , deactivation and uninstall operarations
- Image upload and other options in the same plugin settings form?
- Finding which plugin uses cloudflare (due to GDPR)
- How can I change the meta_key for a particular piece of information?
- the_tags : can we insert a class
- override filter in a plugin
- How to load different homepage on Mobile.?
- WordPress REST API Plugin Development – Add Custom Endpoint
- Hook into the rendering of a WordPress Template
- Is there a maximum length to a WordPress Page?
- I changed .live() to .on() but change is not reflected on the server
- How to track analytics with a WordPress site under the same domain as my main site?
- How do I set up XAMPP to allow me to download plugins and themes?
- Calling a save function from a “submit” button
- Select Form Element Not Saving from Plugin Options
- Does WordPress send data about your blog back to Automattic or somewhere else? [duplicate]
- Table of contents (TOC) plugin is not showing header tag
- Why is my form going to frontend on html form submission present on the php files inside my custom plugin?
- How to create meta fields with more than 1 relation?
- Limiting buddy press features based on membership level (PMPro)
- Add_Meta_box to custom page (formidable edit post)
- Communicating to plugins from webserver
- Clone a Post Tite and Custom Field into Custom Post type
- Ajax specific template not loading in replacement of index.php
- wordpress Shortocode running twice?
- Author Permissions on WordPress Blog
- Collaborate on wordpress local website, share files via dropbox?
- Plugin used only on some pages – not widget
- wp_pagination not displaying at top of page
- Send Processing Order Email from custom payment plugin
- Would deactivating the Simple 301 Redirects plugin deactivate the 301 redirects themselves? [closed]
- How to make 3 boxes like this screenshot has?
- Inline AJAX script passing variables to PHP
- How to get attributes from block.js into php
- Changing a class state in a wordpress plugin