Simple Feature Requests
  • Welcome
  • Getting Started
    • Installation
    • Activate Licence
    • Setup
    • Shortcodes
  • Configuration
    • Allow Users to Remove Their Own Votes
    • Enable/Disable Comments
    • Change Request Title Tags
  • Administration
    • Bulk Actions
  • Pro Features
    • Bulk Edit Statuses
    • Enable Notifications
    • Setup Categories
    • Limit Votes
    • Image Uploads
    • Custom Statuses
    • Multiple Boards
    • Custom Labels
    • Enable & Disable Filters
  • Customizing
    • Email Notifications Signature
    • Change the Default Post Status
  • Troubleshooting
    • Error 404 - Page Not Found
    • Known Plugin Conflicts
  • Advanced
    • Useful Filters
Powered by GitBook
On this page

Was this helpful?

  1. Advanced

Useful Filters

Filters used to alter Simple feature Requests

jck_sfr_statuses

You can use the jck_sfr_statuses filter to manipulate the list of statuses available in Simple Feature Requests.

Example #1: Removing the Published and Under Review statuses

add_filter('jck_sfr_statuses', removeStatuses);

function removeStatuses( $statuses ) {
	
	unset($statuses['publish']);
	unset($statuses['under-review']);
		
	return $statuses;
	
}
PreviousKnown Plugin Conflicts

Last updated 3 years ago

Was this helpful?