I’ve spent hours trying to get bbp style pack to work and it doesn’t work for me. I’ve disabled all other plugins and no effects ever work
So I would like to just buy a pre-done theme so my forums don’t look like a generic forum from 1992
Really disappointed with bbpress all the way around so far
Sure it’s easy to create forums, but the styling is so basic and generic it’s pointless
There should be some pre-loaded theme designs you can easily pick from
Only the Stick (to Front)/super stickie option that puts the topic at the top of all forums is currently visible on the front end to admin users.
We need an option to do a local stickie so that a post only goes to the topic of the forum it is in,not all forums.
How do we enable this?
Hello, how can I increase the length of the title while creating a new thread to be more than 80
Hi, I’m using the code below to change text of topic subscription link (referring to this topic)
add_filter ('bbp_before_get_topic_subscribe_link_parse_args' , 'change_topic_subscribe') ;
function change_topic_subscribe ($args) {
$args['subscribe'] = 'Subscribe to this topic' ;
$args['unsubscribe'] = 'Unsubscribe' ;
return $args ;
}
But it does not work in forum subscription text:
add_filter ('bbp_before_get_forum_subscribe_link_parse_args' , 'change_forum_subscribe') ;
function change_forum_subscribe ($args) {
$args['subscribe'] = 'Subscribe to this forum' ;
$args['unsubscribe'] = 'Unsubscribe' ;
return $args ;
}
Anyone can guide me on this?
Regards.
Hello Everybody,
I need to disable the ability for users to edit their profiles on their forum page but keep the other features; how may I disable that option?
Thanks for your help!
Hello all, hope all are doing well. I searched the forums and only found posts from 2014 about others asking if it was possible to embed twitch videos on this platform. Most replies were entire coding overhauls and what not. I was curious if this function has been added, or if someone could please point me in the right directions.
Thanks!
I cannot find anywhere I can prevent replies to a topic. I do not want users to have the ability to reply to a topic. It appears there is no way to do this. Is there a bbpress plugin that will give me that ability? If not, what file can I edit to remove the reply form from showing up after someone posts a topic?
I have an intermittent issue that when I try to hyperlink text within the body of a Topic in bbPress, one I click the publish button, it strips the hyperlink it becomes plain text again.
I am an admin with adequate permissions to post html and this issue is intermittent…and very frustrating
Tried deactivating each plugin, and the issue remains unresolved.
Can I set an upper limit for old topics and old logs?
And, if the limit overed, I want to set old topics and old logs to automatically delete, and create a new topic. Is it possible?
I am wanting custom fields to show up when a user posts a topic in the forum. I am using ACF because it is suppose to be compatible with bbpress. The support team tells me I must contact bbpress for my current issue.
I have uses ACF plugin to create custom fields. On the backend the custom fields show up if a user posts a new topic in the backend. The custom fields do not show up if the user posts a new topic in the frontend. Even though the custom fields show up in the backend, when the user posts the topic, the custom fields do not show up in the frontend. (I know the following code is correct because the custom fields will show up on the page in the frontend.
Here is the code for the custom fields to display on front end:
echo ‘Anglers: ‘ .get_field( ‘anglers’ );
echo ‘<br>Catch Date: ‘ .get_field( ‘date’ );
echo ‘<br>Time of Day: ‘ .get_field( ‘time’ );
Questions:
A. What bbpress file do I enter this into so it will show up on the frontend of a topic?
B. What bbpress file do I enter this into so it will show when a user posts a new topic on the frontend, not the backend?