Reply To: Opening Subscriber’s profile editor from toolbar
Understood. Altho visitors love their avatar shows up at the top. Now I need to hide Edit Profile menu item to all other than Subscriber but can’t find the way. Is there a way?
View ArticleReply To: Opening Subscriber’s profile editor from toolbar
This code will change the WordPress profile to bbpress profile add_action('wp_before_admin_bar_render', 'rew_admin_bar_remove_wp_profile', 0); function rew_admin_bar_remove_wp_profile() { global...
View ArticleReply To: Opening Subscriber’s profile editor from toolbar
Thank you so so so much! This code is working great. Just one last thing. How can I make this code run only when the user role is Subscriber? -Hiro
View ArticleReply To: Opening Subscriber’s profile editor from toolbar
do you really mean WordPress role subscriber or bbpress role participant ?
View ArticleReply To: Opening Subscriber’s profile editor from toolbar
I always get confused about the relationship since WP and bbP are SSO 🙁 The new public registration is always WP Subscriber, who is subscribed to bbP Announcement forum by bbP Toolkit. This is the...
View ArticleReply To: Opening Subscriber’s profile editor from toolbar
untested but try if ( current_user_can( 'subscriber' ) ) { add_action('wp_before_admin_bar_render', 'rew_admin_bar_remove_wp_profile', 0); add_action('admin_bar_menu', 'rew_add_bbp_profile', 999); }...
View ArticleReply To: Opening Subscriber’s profile editor from toolbar
Worked like a charm! Thank you so so so much! I am in a happy place!
View ArticleReply To: Opening Subscriber’s profile editor from toolbar
great – glad to have helped.
View ArticleReply To: Add/Remove from TinyMCE
I tried the code above and I get all the buttons. But it is missing the Insert Image button.
View ArticleReply To: Add/Remove from TinyMCE
After using the code tweak ($args['teeny'] = false;) I was then able to use this snippet: add_filter("mce_buttons", "tinymce_editor_buttons", 99); //targets the first line function...
View ArticleReply To: Remove specific buttons from TinyMCE
A thousand than you’s! Worked first time and I am grateful.
View ArticleReply To: Remove specific buttons from TinyMCE
Glad to see your correction and thank you for updated code. It will use for me as well.
View ArticleReply To: Opening Subscriber’s profile editor from toolbar
Thank you so so so much! This code is working great. Just one last thing. How can I make this code run only when the user role is Subscriber? -Hiro
View ArticleHow to style the content of the frontend visual editor of bbpress?
Hello I try to change the font-family in the frontend visual editor of bbpress. I’m able to style the buttons and the frame around the editor. But since the content is in a iframe, I’m not able to...
View ArticleUpgrade to 2.6.1 No Longer Loads Custom CSS
Hi Guys I tried updating from 2.5.14 to 2.6.1 and after the update my forum was no longer loading my custom css file that lives in /wp-content/themes/theme_child/css/bbpress.css and the forum lost all...
View Article2.6.1 has tiny font, is this breaking custom css?
I noticed once I got my 2.6.1 working that all the font size is tiny, when I made my theme I used some custom css to re-size the font way before I moved to 2.6.1, I also found this thread Upgrade to...
View ArticleReply To: Upgrade to 2.6.1 No Longer Loads Custom CSS
Apparently we’re not the only ones. See Child CSS
View ArticleReply To: Upgrade to 2.6.1 No Longer Loads Custom CSS
@tinkerbill Thanks, that seems to have fixed the problem for me. Just needed to create bbpress.min.css and have it in the same location as bbpress.css lives.
View Article