Search Results for 'bbpress'
-
Search Results
-
Hello there,
I use WordPress version 3.9, bbPress Forum 2.5.3, Theme Emphaino.
Forum works if you make an entry, but answering the entry the forum looks deformed, the actual entry is whole covered by the answer. I the answer is very long it is cut by the forum and you can only see a part of that.
Like here
http://lareinadelasvacas.es/foro/topic/circuito-por-russia-en-juniojulio-2014/
http://lareinadelasvacas.es/foro/topic/test/?view=allThe sense of my forum is answering the entries of my users. Already working hours to fix that but I just don“t get it.
Help me please!
Topic: Mass email to all users
I have more than 22k users i want to send a mass email to all of them, i just converted my website from joomla to wordpress and bbpress, so what can i do to send all users?
i tried
mass email http://wordpress.org/plugins/mass-mail/installation/
Sitewide newsletter http://wordpress.org/plugins/sitewide-newsletter/but non worked
If I view the index of the bbpress forum I can see my background image for my theme. When I click to go into a specific forum, the background is replaced with a color (off white).
I imagine this is all CSS related and somewhere in the code. I however would like to set all forums to show the same background. I am using a theme called “Explicit” for my wordpress site.
Thanks. I hate being new to this.
I have created a new bbpress forum on my site. If I click on the link through the top menu I get this:

If I click on the announcements section/forum/category… I get this:

I want the index to show up the same as the in forum view. But it seems to be not wanting to work right. I’m also unable to override the background image for that page for some reason.
Any help would be appreciated. I’m at a point now where I’m about to install a different forum and just use it on a sub-domain with no integration with WordPress. This is the second forum I’ve gone through and it’s annoying that there isn’t some simplicity here.
I’m starting this thread because I didn’t have much luck with my original thread on the BuddyPress Support forums.
Basically, what I’m trying to do is copy all the forms from the Edit page from the bbPress profile to another page and still have them work.
Specifically, I’m trying to move them to the Settings page on the BuddyPress profile.
The problem is that they don’t work when they’re moved from their original url, the pre-defined values aren’t displayed and submitting changes doesn’t work, so I’m hopelessly trying to find out what is broken and if this is even possible to do.
Any help will be appreciated.
Thank you.
Topic: Error message after install
I’ve installed bbpress, but when I go to the forum in a browser, I just get this message:
Fatal error: Class 'WP_Post' not found in /nfs/c09/h02/mnt/137912/domains/profoodblogger.com/html/wp-content/plugins/bbpress/includes/core/theme-compat.php on line 375How can I begin tracking this down?
Hi i’m using the Recent Topic Widget but im looking for the exact layout as the bbpress.org Recent Topics on the frontpage. I only get Newest Topic which shows only Topic name – Author and Freshness
But i like to see: Recent Topic Name – Author – Latest Reply and by Poster nameIs there a way I can accomplish this?
Greetings
Topic: Change user role text color
So I changed the names of the user roles. I would like to change the text color of each role. Here is the code that I am using to change the name. Could I just wrap the role name in a color code?
add_filter( 'bbp_get_dynamic_roles', 'my_bbp_custom_role_names'); function my_bbp_custom_role_names(){ return array( // Keymaster bbp_get_keymaster_role() => array( 'name' => __( 'The Dragon Born', 'bbpress' ), 'capabilities' => bbp_get_caps_for_role( bbp_get_keymaster_role() ) ), // Moderator bbp_get_moderator_role() => array( 'name' => __( 'Moderator', 'bbpress' ), 'capabilities' => bbp_get_caps_for_role( bbp_get_moderator_role() ) ), // Participant bbp_get_participant_role() => array( 'name' => __( 'Legionnaire', 'bbpress' ), 'capabilities' => bbp_get_caps_for_role( bbp_get_participant_role() ) ), // Spectator bbp_get_spectator_role() => array( 'name' => __( 'Spectator', 'bbpress' ), 'capabilities' => bbp_get_caps_for_role( bbp_get_spectator_role() ) ), // Blocked bbp_get_blocked_role() => array( 'name' => __( 'Blocked', 'bbpress' ), 'capabilities' => bbp_get_caps_for_role( bbp_get_blocked_role() ) ) ); }p.s. Is there a way to change what each of these roles have access to?
Hi there,
I’ve spent a while searching the forums/web regarding custom views, but am a little bit stumped at the moment. Some of the only reference that I’ve found is a bit outdated (though it still seems to work) and incomplete.
I’d like to create 2 custom views:
- Display a particular user’s favorites (let’s say user_id is hard-coded to 2)
- Display a particular user’s subscribed topics (again, let’s say user_id is hard-coded to 2)
Any points in the right direction? Ideas for resources on the topic of custom views?