Spaces Engine comes with a huge list of features you can use to change how Spaces Engine looks and feels. This is a living document and we intend to add to this list constantly. If you feel a particular filter would be a good fit for Spaces Engine, just let us know.
$post refers to the current Space.
Turn Things On or Off
| Purpose | Filter | Notes |
| Enable Space Creation | apply_filters( ‘wpe_wps_is_space_creation_enabled’, true ); | |
| Space Creation Limit | apply_filters( ‘wpe_wps_get_space_creation_limit’, $limit ); | $limit is an integer representing a maximum number of Spaces that can be created |
| Enable Profile Picture Upload | apply_filters( ‘wpe_wps_can_profile_picture_upload’, true, $post ); | |
| Enable Cover Image Upload | apply_filters( ‘wpe_wps_can_cover_image_upload’, true, $post ); | |
| Enable Short Description | apply_filters( ‘wpe_wps_is_short_description_enabled’, true, $post ); | |
| Enable Categories | apply_filters( ‘wpe_wps_is_categories_enabled’, true, $post ); | |
| Enable Locations | apply_filters( ‘wpe_wps_is_locations_enabled’, true, $post ); | |
| Enable Action Buttons | apply_filters( ‘wpe_wps_is_action_buttons_enabled’, true, $post ); | |
| Enable Activity Feed | apply_filters( ‘wpe_wps_is_activity_feed_enabled’, true, $post ); | |
| Enable Reviews | apply_filters( ‘wpe_wps_is_reviews_enabled’, true, $post ); | |
| Enable Jobs | apply_filters( ‘wpe_wps_is_jobs_enabled’, true, $post ); | |
| Enable Events | apply_filters( ‘wpe_wps_is_events_enabled’, true, $post ); | |
| Enable Services | apply_filters( ‘wpe_wps_is_services_enabled’, true, $post ); | |
| Enable Messaging | apply_filters( ‘wpe_wps_is_messaging_enabled’, true, $post ); | |
| Enable Engagement | apply_filters( ‘wpe_wps_is_engagement_enabled’, true, $post ); | |
| Enable Work Hours | apply_filters( ‘wpe_wps_is_work_hours_enabled’, true, $post ); | |
| Enable Linked Groups | apply_filters( ‘wpe_wps_is_groups_enabled’, true, $post ); | |
| Enable Header Video | apply_filters( ‘wpe_wps_is_video_enabled’, true, $post ); | |
| Enable Contact Form | apply_filters( ‘wpe_wps_is_contact_form_enabled’, true, $post ); | |
| Display Phone Number | apply_filters( ‘wpe_wps_can_display_phone’, true, $post ); | |
| Display WhatsApp Number | apply_filters( ‘wpe_wps_can_display_whatsapp’, true, $post ); | |
| Display Website | apply_filters( ‘wpe_wps_can_display_website’, true, $post ); | |
| Display Email Address | apply_filters( ‘wpe_wps_can_display_email’, true, $post ); | |
| Display Address | apply_filters( ‘wpe_wps_can_display_address’, true, $post ); | |
| Display Social Icons | apply_filters( ‘wpe_wps_can_display_social_icons’, true, $post ); | |
| Display Long Description | apply_filters( ‘wpe_wps_can_display_long_description’, true, $post ); | |
| Display Custom Fields | apply_filters( ‘wpe_wps_can_display_custom_fields’, true, $post ); | |
| Enable Space Admins | apply_filters( ‘wpe_wps_get_admins_enabled’, true, $post ); | |
| Enable Space Editors | apply_filters( ‘wpe_wps_get_editors_enabled’, true, $post ); | |
| Verify Spaces | apply_filters( ‘wpe_wps_is_verification_enabled’, true, $post ); | |
| Feature Spaces | apply_filters( ‘wpe_wps_is_featured_enabled’, true, $post ); | |
| Promote Spaces | apply_filters( ‘wpe_wps_is_promoted_enabled’, true, $post ); |