Search Results for 'bbpress'
-
Search Results
-
Topic: where can i put the css?
HI
I got a code that i would like to hide thee username. For e.g when someone click on the profile member from the post in forum, it will bring to the profile page#bbpress-forums #bbp-user-wrapper h2.entry-title {display: none;}
I have got the bbstyle pack and i entered the code above in the css customization but its not working. Is there a place I can insert the code above?
thanksTopic: need help – Notifications
Hi, We need some help!
We have created am API to create a new topic or post a reply. And trigger a notification when the topic is created or the reply is successfully posted.
The topic is created successfully and the reply is posted without problem. However, the notification is not triggered.
It appears that our REST API has the correct endpoints which made it to post bbPress topics/replies.
But this happens (topic/reply creation) on “WordPress level” rather than bbPress level.
Does anyone have any insights or tips on how to trigger the notification at the bbPress level?
Thank you so much!
Jing
Is there a plugin (or another way) to find out about the subscriptons in bbPress? The shortcode [bbp-stats] doesn´t help and statistic plugins seem to be closed. Any idea where to look in the database?
Hi there,
Is it possible to use the forum title rather than the forum id when using shortcode to display the forum? In my website I am using a plugin which has virtual pages and I would like the user to search for the title of the forum they want and then it to be displayed – by means of shortcode.
Just in case, I would like to add that duplicate naming of the fourms would not be an issue in my website (it is not possible for the user to create a fourm with the same name).
Also, is there a way in which I am able to query the forum index? If so, am I able to check if a forum with this name (used in the query) already exists? If it doesn’t I would like the user to be able to start it, is this also possible?
WordPress version 5.6.2
bbPress version 2.6.6Thanks in advance!
Topic: Changing Discussion Sidebar
Hi again,
I get 404 error when i am using bbpress functions as bbp_user_topics_created_url(6), 6 is the user id.
I am using ultimate member with integration plugin for bbpress in multisite instalation.Thanks in advance.
Hi,
I have added Words which are not allowed in the replies of forum in my Settings>Discussions>Disallowed Comment Keys and once I enter any of these words in replies of any of my forums posts an error is shown Your reply cannot be created at this time.Basically I want to customize the error and change it to my custom error which can be seen by user, I tried many ways like overwriting it by using hooks in my theme php file but not succeeded.
Any help would be appreciated.
Thanks.
Hi All,
Iam totally new to bbpress and i tried the search functionality and when i click search it brings me to Archives and the formatting is totally off and below is what I see. Is that how the search results looks like in ALL TEXT? I have replaced the IP and email address with X.
Thanks
Archives
Search Results for ‘test’
Home › Forums › Search › Search Results for ‘test’ Viewing 6 results – 1 through 6 (of 6 total) Author Search Results February 23, 2021 at 12:45 pm #231 In reply to: test TW XXXXXXX@gmail.comKeymaster (XXX.XX.XX.XX) test February 23, 2021 at 12:45 pm #230 Topic: test in forum Private: Forum 1 XXXXX@gmail.comKeymaster (XXX.XX.XX.XX) test […]Hi all, thanks in advance for any help. I have set up a members only page on my website – http://scaleupgroup.co/members/. This page is restricted using Memberpress. I have also set up bbpress and set the root forum index to http://scaleupgroup.co/members/forums. However, this forums page is not protected by Memberpress as it is an archive page built by bbpress.
Can anyone help me set the forums archive page (in this case – http://scaleupgroup.co/members/forums) parent page to be http://scaleupgroup.co/members?
Thank you
Topic: Private forums
Hi,
I want to create private forums in bbpress. if a user wants to get access in this private forum he should request it from the admin. I want this private forum to be visible from all users but not accesssable until the user get the access permission. I am using ultimate member plugin with bbpress.Thanks in advance.
Topic: help me modifying the plugin
Hi
I want the thumbnail to appear on the topic
Search results found a plugin similar to the function I’m hoping forbbpress-topic-thumbnails
https://wordpress.org/plugins/bbpress-topic-thumbnails/I want to add one more feature in this plugin.
With this plugin, thumbnails of all forum topics are displayedI only want to use this feature for 1 specific forum
reason for write topic is because the plugin has not been updated for a long time.So I ask for help here
code is
/*Hooks into the loop-topic.php output to print image*/ add_action( 'bbp_theme_before_topic_title', 'bee_insert_thumbnail' ); function bee_insert_thumbnail() { if((!bee_catch_image() == '')){ echo('<a href="'); echo(bbp_topic_permalink() . '"><img class="bbp-topic-thumbnail" width="100%" style="max-width: ' . get_option('thumbnail_size_w') . 'px; max-height: ' . get_option('thumbnail_size_h'). 'px; vertical-align:middle;" src="' . bee_catch_image() . '"/>' .'</a>'); } } /*Function that retrieves the first image associated with the topic*/ function bee_catch_image() { global $post, $posts; $first_img = ''; ob_start(); ob_end_clean(); $output = preg_match_all('/<img.+src=[\'"]([^\'"]+)[\'"].*>/i', $post->post_content, $matches); $first_img = $matches [1] [0]; return $first_img; }Anyone can help?
Thanks