Search Results for 'bbpress'
-
Search Results
-
How can I remove the text “BBpress Forum” in my menu? There is no option for it in the menu, and I haven`t found anything useful when Googleing…
Here you can see the problem: http://www.awesomescreenshot.com/image/1995272/6e1119241f4015e8a098446ed99bc5c7
Hello,
I’m moving to a new WordPress installation.
However, unfortunately I cannot just export my database. I’m on a host that has a very customized WordPress (I’m with Rainmaker, in case you’ve heard of them). I’m moving to a self-hosted WordPress where I have complete access to the database.
I cannot install any plugins on the old host.
I tried exporting the forums, topics, and replies. But, they are left without being associated to one another.
I’m not sure if it’ll change anything if I export it all at once. There’s a lot of other content, so I wanted to try to do it on its own.
What’s the best way to export my bbpress data so I can import it to my new WordPress installation?
Thanks for your help.
I am developing an android app for my wordpress forum. Please is there any way I can create new users and login old ones programmatically? Maybe a rest API or something.
Please you can show the code in php or any language of your choice.
I want to change the layout of the topic when viewing topics on Mobile (i.e. small screens)
Currently is is like shown belowHow do I make author appear on top of the post.
PS : I have enabled multithread reply
BBpress: 2.5.12
Wordpress: 4.7
Theme: Avada 5.0.4Topic: Several Issues
I like your plugin, but I still have issues.
1). I can’t make my forum introduction sticky.
2). There are few editing options on forums. And users can’t edit from the front-end.
3). My forum has a sidebar within a sidebar. I could not change it, no matter what I tried.
My forum URL: https://alllivesaresacred.com/forum/#.WF8MqRsrK00
I’m using WordPress 4.7 and bbPress 2.5.12
Thank you!
Hi –
I’m getting multiple variations of the following error message –
Notice: Undefined index: link_before in ………..public_html/wp-content/plugins/bbpress/includes/forums/template.php on line 797
(Just wondered if anyone knew of a quick fix before I go disabling plugins, enabling 2016 theme etc, as it causes some ball-ache my end with widgets needing to be setup again etc.)
Thanks if you do 😉
The standaard BBpress searchfunction is very bad,slow, had no options to filter and it looks there is no development on this.
A good searchfunction is so very important for a succesfull forumscript.
After long searching and testing serveral search-plugin i’ve found a good working plugin.
Fast, configurable and ajax.See the search-plugin in my live website http://www.opel-forum.nl
I use the free version. The pro version has more options.This is the link to the plugin.
How can I use frontend pm with bbpress as a pm system ?
Topic: Is there an API for bbPress
Please is there a JSON API for bbPress? If yes how do I access/enable it?
Topic: How Do I Set Up A Forum?
Hello:
I tried to set up a forum on my site. Where do I add new forums? I created a Forum page but I see no options to add forums to any pages. They go to my landing page only. Instructions for setting up a forum aren’t clear enough to me.
I’m using WordPress 4.7 and bbPress 2.5.12
Thank You!
Lisa DeSherlia
Hi, I’m having an issue with how bbpress displays on my website. Im using the divi theme with the latest bbpress plugin and wordpress version.
The border is misaligned on the left and bottom (see link below). I have tried css to fix it but with no luck. I think its to do with the padding. Anyone know how to fix this?
https://www.dropbox.com/s/fxizzkhjh285l4r/Screenshot%202016-12-23%2016.59.45.png?dl=0
Thanks for any help!
Hi! Good day! Is it possible to convert thread [bbpress a like] to post [normal wordpress post] ?
Im looking for a PM system that will work with wordpress and bbpress, ive found frontend PM but it doesnt work with bbpress out of the box and im not getting any reply from the developer.
does anyone have any suggestions.
WordPress 4.7
bbPress 2.5.12
Site: https://forum.ait-pro.com/
Custom bbPress/BuddyPress Theme & tested switching to WP Twenty Seventeen Theme
Tried creating a bug ticket on trac, but was not allowed to login and do so.Issue: In previous versions of bbPress this code below worked fine in my Theme functions.php file. As of bbPress 2.5.12 this code is no longer working in my Theme functions.php file. I checked output and bbPress Core code and did not see anything obvious. Output was good. ie $role and $caps, but it appeared that the filter was not being processed in time when the Activity template loaded. So I moved this code to the BuddyPress /plugins/bp-custom.php file and this code works fine. So obviously this some kind of init or loading order type of issue. ie the filter is being processed too late.
// bbPress Disable Topic Tags for Participants function aitpro_get_caps_for_role_filter( $caps, $role ) { if ( $role == 'bbp_participant' ) $caps = aitpro_get_caps_for_role( $role ); return $caps; } add_filter( 'bbp_get_caps_for_role', 'aitpro_get_caps_for_role_filter', 10, 2 ); function aitpro_get_caps_for_role( $role ) { switch ( $role ) { /* Disable Topic Tags for Participants */ case 'bbp_participant': return array( // Primary caps 'spectate' => true, 'participate' => true, // Forum caps 'read_private_forums' => true, // Topic caps 'publish_topics' => true, 'edit_topics' => true, // Reply caps 'publish_replies' => true, 'edit_replies' => true, // Topic tag caps 'assign_topic_tags' => false, // Using false disables allowing Participants to create Topic Tags ); break; default : return $role; } }