Search Results for 'forum'
-
Search Results
-
Topic: I can’t post comments?
Hi,
I did not want to show some things in the activity stream. After searching a long time I did find a snippet what did work.
function bp_activity_dont_save($activity_object) { $exclude = array( 'bp_doc_created', 'bp_doc_edited', 'bp_doc_comment', 'bbp_topic_create', //bbpress 'bbp_reply_create', //bbpress 'created_group', 'joined_group', ); // if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function if (in_array($activity_object->type, $exclude)) $activity_object->type = false; } add_action('bp_activity_before_save', 'bp_activity_dont_save', 10, 1);Is this the best way to do this? Or do you have a better sollution?
I cannot find the right term to exclude when someone updates in a group, does someone know that one?Then, I want to get rid off the options in the drop down menu on the activity stream. I did find some code what almost did the trick.
`add_filter( ‘bp_get_activity_show_filters_options’, function( $filters ) {
unset( $filters[‘bp_doc_created’] );
unset( $filters[‘bp_doc_edited’] );
unset( $filters[‘bp_doc_comment’] );
unset( $filters[‘bbp_topic_create’] );
unset( $filters[‘bbp_reply_create’] );
unset( $filters[‘created_group’] );
unset( $filters[‘joined_group’] );
unset( $filters[‘updated_group’] );
return $filters;
} );I think there should be a better way, so I hope someone can advice me with this.
Now i have a strange thing. The Forum topics and replies are not visible anymore in the dropdown so thats good.
The group creation and the group joining are not visible anymore so thats good.
I cannot find the group update term. Does someone know what Term i need?
And, the bp docs are still visible. This is strange because they are not showing anymore in the activity feed, but i cannot get them out of the dropdown menu.
Can someone help me to achieve this? Or give me a better sollution??
Sorry for any bad English
Thanks in advantage
Topic: Display website field
Hello,
I have a repeater fieldset with ‘Website’ and ‘URL’ field.
Here is my current code to display the datas (it’s within a while loop):
<?php if ( bp_field_has_data() ) : ?>
<?php echo bp_get_the_profile_field_value(); ?>
<?php endif; ?>
At the moment the datas are displayed like this:
<p>Website name #1<p>
<p>URL #1<p>
<p>Website name #2<p>
<p>URL #2<p>
...
There is some formatting with <p> and added + I would like to get separate datas.
I searched all over the forums, tried a lot of ways, I can’t find a solution.
Could you please help me find a way to get the raw datas?
Thank you!Hello dear forum community,
do you have an idea how to solve this: in the list of displayed activity comments within a certain group, which I can identify by the group ID, I want to show only the contributions of the currently logged in user.
So in the end a kind of filter that acts as if the database entries of other users wouldnt be there at all (maybe by manipulating the returned result set). I want to set up a support forum where each user sees only his own support requests.
Is there a “bp user can” hook which could help?
Thanks!Topic: 404 on New Topic
https://instylla.com/hes-hvt-pivotal-study/new-topic/?ForumId=0&site=CARTI
Hello Support Team,
When I access above URl it shows 404 error page. It’s not working on SSL website but it’s working on other non-secured website. Any help would be appreciated.
Thank in Advance.
Hello all,
I’ve created a custom theme. I’ve kept it simple, and I like everything about it except that my /register page is blank! Along with all the other buddypress stuff and the forum, etc.
Is there some piece of code i need to include in my .functions.php or header or something to make all this work together?
When I switch to another theme, like twenty-twenty-one, the register page shows up, BUT the style makes all my pages look really bad! What can I do to make this bit work in my theme?
working on the site http://staging3.recordcollectorsoftheworldunite.com/
Thanks so much.
I’m creating a new BuddyPress site that will be primarily organized around Groups. Each Group will represent a city, and each Group needs to have multiple Forums (such as for neighborhoods within the city). Two questions, please:
1) How do I create multiple Forums for Groups? When I set up a new Group, it asks if I want the Group to have a Forum. But it says nothing about having more than one Forum.
2) I’m confused about the difference between a BuddyPress user registration and a BBPress Forum user registration. Do I need both? Does the Forum registration just register them for one Forum, or for use of the whole BuddyPress site? If they register in BuddyPress, do they also need to register to take part in a Forum?In general, I don’t understand why BuddyPress and BBPress are separate plugins. It would make a lot more sense (and be less confusing) if they were all in one plugin, wouldn’t it?
Topic: Viewing My Profile
Why does clicking on my user name (upper right corner of the screen) in my forums take me to the Edit Profile page instead of the View Profile page, and how do I change it? It shouldn’t take me to the profile editing page unless I click on “Edit profile” or I choose the “Edit” option on the profile page itself.
(Incidentally, it’s even more screwed up on this forum. It goes to https://buddypress.org/wp-admin/profile.php , not anything to do with me. Naturally, I get a “Sorry, you are not allowed to access this page.” error.)
WP Version 5.9
BP Version 9.2.0
bbPress Version 2.6.9
bbp style pack Version Version 4.9.1Site: http://www.laceioli.org
Natural Medicine Forums
Above link
– Members can make a post but can’t comment to the post?
Help