开发者 |
daveshine
deckerweb |
---|---|
更新时间 | 2019年2月22日 05:47 |
捐献地址: | 去捐款 |
PHP版本: | 3.1 及以上 |
WordPress版本: | 5.1 |
版权: | GPLv2 or later |
版权网址: | 版权信息 |
moderate
. (Note: I am open for suggestions here if this should maybe changed to a more suitable capability.)bbpaba.pot
) for translators is also always included :)bbpress-admin-bar-addition
folder to the /wp-content/plugins/
directory -- or just upload the ZIP package via 'Plugins > Add New > Upload' in your WP Admin/wp-content/languages/bbpress-admin-bar-addition/
(just create this folder) - This enables you to use fully custom translations that won't be overridden on plugin updates. Also, complete custom English wording is possible with that, just use a language file like bbpaba-en_US.mo/.po
to achieve that (for creating one see the tools on "Other Notes").Yes, this plugin works really fine with WordPress 3.3+! It also works great with WP 3.2 branch - and also should with WP 3.1 branch - but we only tested extensively with WP 3.3+ and 3.2 branch. So you always should run the latest WordPress version for a lot of reasons.
Just drop me a note on my Twitter @deckerweb or via my contact page and I'll add the link if it is useful for admins/ webmasters and the bbPress community.
This is possible of course and highly welcomed! Just drop me a note on my Twitter @deckerweb or via my contact page and we sort out the details!
Particularly, I need the admin url for the primary options page (like so wp-admin/admin.php?page=foo
) - this is relevant for both, plugins and themes. For themes then I also need the correct name defined in the stylesheet (like so Footheme
) and the correct folder name (like so footheme-folder
) because this would be the template name when using with child themes. (I don't own all the premium stuff myself yet so you're more than welcomed to help me out with these things. Thank you!)
Simple answer: The settings of these add-ons are added directly to the bbPress main settings page and have no anchor to link to. So linking/ adding is just not possible.
Yes, it is! :) Works really fine in Multisite invironment - here I just recommend to activate on a per site basis so to load things only where and when needed.
Yes, you could. -- However, it doesn't make much sense. The plugin is intented for a per site use as the admin links refer to the special settings, plugin-support and theme-support for that certain site/blog. So if you have a Multisite install with 5 sites but only 3 would run "bbPress 2.x" the the other 2 sites will only see support links in the Toolbar / Admin Bar... I guess, you got it? :) Though intended for a per site use it could make some sense in such an edge case: if all of the sites in Multisite use bbPress 2.x and have lots of bbPress-specific plugins in common and use the same theme/framework. This might be the case if you use Multisite for multilingual projects, especially via that awesome plugin: http://wordpress.org/extend/plugins/multilingual-press/
Yes, this is possible since version 1.5 of the plugin! There are 5 action hooks available for hooking custom menu items in -- bbpaba_custom_main_items
for the main section, bbpaba_custom_forum_items
for the Forums sub-level section (frontend links), bbpaba_custom_extension_items
for the exentensions section, bbpaba_custom_theme_items
for the theme section plus bbpaba_custom_group_items
for the resource group section. Here's an example code:
`
add_action( 'bbpaba_custom_group_items', 'bbpaba_custom_additional_group_item' );
/**
Yes, this is possible! You can remove the following sections: "Extensions" area (all items) / "Theme" (all items!) / "Resources link group" at the bottom (all items) / "German language stuff" (all items)
To achieve this add one, some or all of the following constants to your theme's/child theme's functions.php
file:
`
/* bbPress Admin Bar Addition: Remove Extensions Items /
define( 'BBPABA_EXTENSIONS_DISPLAY', FALSE );
/* bbPress Admin Bar Addition: Remove Theme Items /
define( 'BBPABA_THEME_DISPLAY', FALSE );
/* bbPress Admin Bar Addition: Remove Resource Items /
define( 'BBPABA_RESOURCES_DISPLAY', FALSE );
/* bbPress Admin Bar Addition: Remove German Language Items /
define( 'BBPABA_DE_DISPLAY', FALSE );
`
Yes, that's also possible! This could be useful if your site has special user roles/capabilities or other settings that are beyond the default WordPress stuff etc. For example: if you want to disable the display of any "bbPress Admin Bar Addition" items for all user roles of "Editor" please use this code:
/** bbPress Admin Bar Addition: Remove all items for "Editor" user role */ if ( current_user_can( 'editor' ) ) { define( 'BBPABA_DISPLAY', FALSE ); }
To hide only from the user with a user ID of "2":
/** bbPress Admin Bar Addition: Remove all items for user ID 2 */ if ( 2 == get_current_user_id() ) { define( 'BBPABA_DISPLAY', FALSE ); }
To hide items only in frontend use this code:
/** bbPress Admin Bar Addition: Remove all items from frontend */ if ( ! is_admin() ) { define( 'BBPABA_DISPLAY', FALSE ); }
In general, use this constant do hide any "bbPress Admin Bar Addition" items:
/** bbPress Admin Bar Addition: Remove all items */ define( 'BBPABA_DISPLAY', FALSE );
Yes, this is also possible! Since v1.5+ of my plugin support for GD bbPress Tools" and "GD bbPress Toolbox (Pro)" (both by Milan Petrovic of Dev4Press) is included so if you only want his stuff to appear within "bbPress Admin Bar Addition" just add this constant to your active theme's/child theme's functions.php file
or functionality plugin:
/** bbPress Admin Bar Addition: Remove original GD bbPress Tools items */ define( 'BBPABA_REMOVE_GDBBPRESSTOOLS_TOOLBAR', true );
All filters are listed with the filter name in bold and the below additional info, helper functions (if available) as well as usage examples. bbpaba_filter_capability_all
moderate
(bbPress admin stuff should only be done by at least "Moderators", right?!)__bbpaba_admin_only
-- returns 'administrator'
role -- usage:
add_filter( 'bbpaba_filter_capability_all', '__bbpaba_admin_only' );
__bbpaba_role_editor
-- returns 'editor'
role -- usage:
add_filter( 'bbpaba_filter_capability_all', '__bbpaba_role_editor' );
__bbpaba_role_bbp_moderator
-- returns 'bbp_moderator'
role -- usage:
add_filter( 'bbpaba_filter_capability_all', '__bbpaba_role_bbp_moderator' );
__bbpaba_cap_moderate
-- returns 'moderate'
capability -- usage:
add_filter( 'bbpaba_filter_capability_all', '__bbpaba_cap_moderate' );
__bbpaba_cap_manage_options
-- returns 'manage_options'
capability -- usage:
add_filter( 'bbpaba_filter_capability_all', '__bbpaba_cap_manage_options' );
__bbpaba_cap_install_plugins
-- returns 'install_plugins'
capability -- usage:
add_filter( 'bbpaba_filter_capability_all', '__bbpaba_cap_install_plugins' );
__bbpaba_cap_edit_theme_options
-- returns 'edit_theme_options'
capability -- usage:
add_filter( 'bbpaba_filter_capability_all', '__bbpaba_cap_edit_theme_options' );
--> Changes the capability to
activate_plugins`__bbpaba_colornamehere_icon()
this results in the following filters ready for usage:
`
add_filter( 'bbpaba_filter_main_icon', '__bbpaba_blue_icon' );icon-bbpaba.png
) found in your current theme's/child theme's /images/
subfolder
--> Uses a custom image from your active child theme's
/images/` foldericon-bbpress
(class is: .icon-bbpress
)__bbpaba_no_icon_display()
-- usage:
add_filter( 'bbpaba_filter_main_icon_display', '__bbpaba_no_icon_display' );
--> This way you can REMOVE the icon!--> You then have to define CSS rules in your theme/child theme stylesheet for your own custom class
.your-custom-icon-class`functions.php
file:
`
add_filter( 'bbpaba_filter_main_item_title', 'custom_bbpaba_main_item_title' );
/**functions.php
file:
`
add_filter( 'bbpaba_filter_main_item_title_tooltip', 'custom_bbpaba_main_item_title_tooltip' );
/**functions.php
file you can also add them to a functionality plugin or an mu-plugin. This way you can also use this better for Multisite environments. In general you are then more independent from theme/child theme changes etc.
All the custom & branding stuff code above can also be found as a Gist on Github: https://gist.github.com/2721186 (you can also add your questions/ feedback there :)
constants
in your active theme/child theme -- this way you can customize for your staff members if you need some more users with extended or restricted admin bar/toolbar access (See "FAQ" section here)/wp-content/languages/bbpaba/
(just create this folder) - this enables you to use fully custom wording or translations