Quantcast
Channel: bbPress.org » All Posts
Browsing all 3638 articles
Browse latest View live

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 Article


Reply 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 Article


Reply 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 Article

Reply To: Opening Subscriber’s profile editor from toolbar

do you really mean WordPress role subscriber or bbpress role participant ?

View Article

Reply 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 Article


Reply 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 Article

Reply 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 Article

Reply To: Opening Subscriber’s profile editor from toolbar

great – glad to have helped.

View Article


Reply 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 Article


Reply 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 Article

Reply To: Remove specific buttons from TinyMCE

A thousand than you’s! Worked first time and I am grateful.

View Article

Reply To: Remove specific buttons from TinyMCE

great – glad you are fixed

View Article

Reply 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 Article


Reply 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 Article

How 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 Article


Upgrade 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 Article

2.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 Article


Reply To: Upgrade to 2.6.1 No Longer Loads Custom CSS

Apparently we’re not the only ones. See Child CSS

View Article

Reply To: 2.6.1 has tiny font, is this breaking custom css?

Bump

View Article

Reply 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
Browsing all 3638 articles
Browse latest View live