As soon as someone posts in the forum (same with comments) their IP address is saved.
Is there any way to anonymize the user’s IP or delete it after x hours or days?
Removing or setting to 0.00.0 does not seem to be a good solution as it might result in an unsufficient spam protection.
This is important for countries with strict data protection law.
Hello, i put bbpress with the plugin wp social login, well, when I activate the plugin and put to login with facebook, twitter and google…. I have to put ID, and secret Key, to cofigurate….
Well. I activate the plugin, and a few hours later, I check that the people click in face,twitte or google to login to writte, INSIDE TO MY WORDPRESS PANEL CONTROL!!!
What happend? how can I configurate my plugin that the people register to writte in bbpress, no inside in my private blog!
Would it be possible to have the forum notification emails only show an extract of the content rather than all content as an option?
I feel this would improve myuser experience of being a member of my site since the notification email does not carry all of the formatting features of the original post, I would therefore like to drive my users to the site to view the full content rather than have then read the content in the email.
Hi there, right now I’m using Mingle Forum for my website. But this is becoming unstable. I’d like to install bbpress but will my data and topics stay intact?
I am trying to make a single page where users can choose to subscribe or unsubscribe to their forums (see https://bbpress.org/forums/topic/manage-subscriptions/). I’m pretty new to php/java, so please excuse me if this is obvious.
Basically, I have 3 forums (79, 80, 81). I have a button for each forum. When the user clicks a button, I use AJAX to run a php script. The php script is used to either subscribe or unsubscribe the user depending on whether they are already subscribed or not.
My problem is that when a user is subscribed, I’m not able to remove their subscription, and vice versa. When I click a subscribe button, the php code executes, it is able to determine if the user is subscribed, and the if statement executes properly. My problem is that bbp_add_user_subscription and bbp_remove_user_subscription return false every time.
Any help is greatly appreciated. The PHP and java script are below.
<?php
if (isset($_POST[‘action’])) {
$forum = $_POST[‘action’];
$forumint = 0 + $forum;
$subs=bbp_is_user_subscribed_to_forum($user_id,$forum);
if($subs==false) {
//if user not subscribed, then subscribe
$add=bbp_add_user_subscription($user_id,$forumint);
}
else {
$rmv=bbp_remove_user_subscription($user_id,$forumint);
//do_action(‘bbp_remove_user_subscription’, $user_id, $forumint)
}
echo ‘forum ‘;
var_dump ($forum);
echo ‘subscribed ‘;
var_dump ($subs);
echo ‘add ‘;
var_dump ($add);
echo ‘remove ‘;
var_dump ($rmv);
echo ‘foruminteger ‘;
var_dump ($forumint);
exit;
}
?>
<?php
<!– initiate all buttons –>
<button id=”790″ class=”button” onclick=”Subscriber(‘790’)”>Subscribe</button><br><br>
<button id=”800″ class=”button” onclick=”Subscriber(‘800’)”>Subscribe</button><br><br>
<button id=”810″ class=”button” onclick=”Subscriber(‘810’)”>Subscribe</button><br><br>
<!– change button text on load based on user subscription –>
<script>
$( document ).ready(function() {
$( “.button” ).click(function() {
var ForumID = $(this).attr(“id”)/10;
$.ajax({
//url: ”, // url is empty because I’m working in the same file
data: {‘action’: ForumID},
type: ‘post’,
success: function(result) {
alert(“action performed successfully”); //this alert is fired
$(‘div#result’).text(‘Button clicked: ‘ + result);
}
});
});
});
</script>
Hello, I have bbpress in my blog, well, i want to put login with facebook,twitter and google. I dowload social login and wp social login, but I can not see nothing, i can not see any logo, and nothing, It is like I have install but do not appeare in any places, I configurate all plugins (I try both).
Why I can not see the login with this plugins?
I tried to create two pages with but nothing, I can not see nothing for registrer or login.
Hi there, I would love to add a “view more topics” link to the bottom of the recent topics sidebar widget. I have a child theme set up and I’m thinking the link should be added somewhere in widgets.php? But I’m having trouble finding where. I tried adding the link around line 829 but no dice. Just wondering if anyone knows how to make this tweak. Thanks.
I want to display some value in first reply(new topic content). Which function I should hook ?
This is position
A site has 4 parent forums, each with several child forums.
I want to filter bbp_has_forums based on the ID of one or more parent forum IDs.
In this example, I expect the results to only include forums whose parent ID is 886, but all forums are displayed.
<?php $args = array( 'post__parent_in' => array( 886 ) ); ?>
<?php if ( bbp_has_forums( $args ) ) : ?>
Is this possible?
Am I missing something obvious?
Hello, I’m setting up a forum in my site using bbpress 2.5.8.
I’ve set the permalinks to include the post-name and it works fine with forums and topics, however when I see the permalinks of the replies these are set with the id (eg. site/forums/reply/6117) and these replies don’t have a title.
How can I set the title to be as some others I’ve seen: reply-to-topic and use this in the URL instead of the ID (eg. theme-fusion.com/forums/reply/reply-to-how-to-change-language-of-avada-theme/) in case I want google to index the replies?
Thanks in advance.