Block, Suspend, Report for BuddyPress
Block, Suspend, Report for BuddyPress is a must-have plugin for EVERY BuddyPress installation. For a full list of features, documentation, screenshots and videos, head to the plugin page. Each tool is explained further below. Block The Block tool allows your members to block another member. They simply click on a ‘block’ button, either on another member’s profile, or on the member list. Once blocked, neither member can send a message to the other. Each member’s profile pages become inaccessible, and display a simple message. Neither can view each other’s activity updates, or replies, and neither can send a friend request to one another. A simple solution to deal with disputes between members. Prevents escalation of abusive or unacceptable conduct between your members. Lets your members deal with disputes by themselves, saving you time. Suspend The Suspend tool allows you, as an administrator, to suspend a member. Available only to administrators is a ‘suspend’ button on your member’s profiles, the member directory, and the admin users screen. Once clicked by you, all of that member’s sessions are terminated, and they will be unable to log back in, instead seeing a custom message explaining the situation. Quickly deals with members who have breached your acceptable standards policies. Allows you to disable an account – until now, you would have to delete the account, or mark them as a spammer. Keeps their profile, uploads, messages and other assets ready, should you decide they can return to the site. See all your suspended members from the back end. Report Flag inappropriate, abusive, or otherwise unacceptable behaviour to the site administrator. Each member’s profile now incorporates a ‘report’ button. This creates a new report, which administrators can see in the backend. You can specify a report type, similar to social media networks such as Facebook, to designate that report as ‘spam’ or ‘abusive’ and so on. You can set Block, Suspend, Report to email you when a new report is received. Gives your members peace of mind that the site is open to moderation. Allows you to deal with any report in your own time, without having to respond to internal messages or other notifications. Set a threshold to automatically suspend a user when a number of reports are received. Mark new reports as read/unread Mark reports as unsubstantiated See number of unread reports from the menu or the dashboard Block, Suspend, Report for BuddyPress Premium Editions The Premium editions adds the following features: Pre-approval system for new activities and group posts A ‘Latest Reports’ box in the dashboard A ‘Most Blocked’ box, showing your site’s worst offenders Integration with Paid Memberships Pro – enable blocking and reporting for certain levels only. Assign a role to a suspended user Automatically receive new features as they are built Ability to add custom CSS to match your theme’s styling perfectly Premium email support Plus, a super-charged report system: You can allow a huge range of content to be reported and moderated, not just members themselves: WordPress Comments Activity Updates Activity Comments Groups Private Messages Forum Topics Forum Replies rtMedia Uploads Create your own report types, or edit the default ones. Add your own reports from the backend, ideal for when your members flag content directly to you via a private message or similar. Whitelist any user roles that cannot be reported Blacklist members so they can’t send reports (ideal for malicious complaints) Quickly moderate (hide) any activity from the dashboard Add your own moderators who have front-end access to the reporting system Let your moderators deal with reports, suspensions, activity moderation Fully Tested With Beehive Theme BP Better Messages Not compatible with Vikinger Theme
Top keywords
- report12×1.95%
- member10×1.63%
- members10×1.63%
- reports8×1.30%
- suspend8×1.30%
- block7×1.14%
- activity5×0.81%
- allows4×0.65%
- deal4×0.65%
- message4×0.65%
- messages4×0.65%
- own4×0.65%
Lightweight Accordion
Lightweight Accordion plugin for WordPress allows you to add collapse elements to posts using a Gutenberg block or a shortcode (via classic editor). By using the details HTML tag and a few lines of CSS this allows for a javascript-free accordion for minimum page load. Extremely Lightweight (<1kb): Without using Javascript the plugin uses the native details HTML tag and a few lines of code for almost no impact on front-end. Customizable: Options include customizing the HTML tag used for the accordion title, open by default, borders, colors, and accordion grouping (auto-close others when one opens). Shortcode Usage examples Here are a few examples of using the accordion plugin with shortcodes. [lightweight-accordion title="My Accordion"]My Content[/lightweight-accordion] Additionally you can display the accordion open on load with the accordion_open option. [lightweight-accordion title="My Accordion" accordion_open=true]My Content[/lightweight-accordion] You can also change the html tag wrapping the title of the accordion using the title_tag option. [lightweight-accordion title="My Accordion" title_tag="h3"]My Content[/lightweight-accordion] If you want to include FAQ schema you can add the schema option and set it to faq. [lightweight-accordion title="What is your return policy?" schema="faq"]You have 1 week to return your items[/lightweight-accordion] If you’d like put a border around the content of the accordion you can use the “bordered” attribute. [lightweight-accordion title="Bordered Content" bordered=true]My Content[/lightweight-accordion] If you want accordions to auto-close when another opens (exclusive accordion), use the “group” attribute with the same value on each accordion. [lightweight-accordion title="Question 1" group="faq"]Answer 1[/lightweight-accordion] [lightweight-accordion title="Question 2" group="faq"]Answer 2[/lightweight-accordion] [lightweight-accordion title="Question 3" group="faq"]Answer 3[/lightweight-accordion] Shortcode Options Here is the full listing of shortcode options. Additionally all of these options are accessible when using the Gutenberg block. title (Required Default: null) The title of your accordion will be displayed at the top for users to click. A good example would be to include a user’s question so they could click it for more details. content (Required Default: null) Content that will go into your accordion element. title_tag (Default: “span”) This sets the html tag that wraps the title in the accordion summary. Useful if you want to make it a heading tag for SEO purposes. accordion_open (Default: false) Set this to true if you want your accordion to be open by default. bordered (Default: false) Set this to true if you want a border around the accordion content. title_text_color (Default: false) Set this to a hex value or CSS color to change the color of the accordion title text. title_background_color (Default: false) Set this to a hex value or CSS color to change the color of the accordion title text. schema (Default: false) Set this to faq if you’d like FAQ schema to be included. class (Default: false) Used to add a custom class to the parent container of the accordion. anchor (Default: null) Adds the value as an ID to the accordion div as an anchor. autop (Default: true) By default the shortcode will wrap text in a ‘p’ tag. Set this to false if you’d like this disabled for the specific accordion. group (Default: false) Set this to a group name to make accordions with the same group auto-close when another opens. Uses the native HTML details name attribute for zero JavaScript overhead. Additional Details If you’d like to remove the “lightweight-accordion.css” from being enqueued on your site use the filter below. It’s recommend you style the accordion yourself if you use this filter. add_filter('lightweight_accordion_include_frontend_stylesheet', '__return_false' ); If you’d like to remove the “lightweight-accordion/editor-styles.css” from being enqueued in the admin area of your site you can use the filter below. add_filter('lightweight_accordion_include_admin_stylesheet', '__return_false' ); If you’d like to remove processing of shortcodes in accordion content you can use this filter. add_filter('lightweight_accordion_process_shortcodes', '__return_false' ); If you’d like to use inline Microdata for FAQ schema you can use this filter. (Not recommended) add_filter('lightweight_accordion_output_microdata', '__return_true' ); If you’d like to force “lightweight-accordion.css” to load on all of your site you can use this filter. By default the plugin will detect if the block or shortcode is used and enqueue the CSS. add_filter('lightweight_accordion_always_include_frontend_stylesheet', '__return_true' );