Search Results for 'bbpress'
-
Search Results
-
Topic: Translation German
Hello together
I have the bbpress version 2.5.10 installed on my wordpress site:
http://www.physioarena.ch/hsg/forum/
and i want it translated i german, but it doesnt work!!
I have downloaded the files: bbpress-pt_DE.mo and bbpress-pt_DE.po and put These files in the Folder wp-content/languages/bbpress
can you help me?? thxxxxxx!!! sorry for my english!
Topic: Providing a link to login
I’m really surprised to see that bbPress warns visitors to the forums that “You must be logged in to create new topics.” but does not provide a link to the login page. e.g.,
<a href='/login.php'>Login</a> to create new topics and/or to reply to topics.Is there some way to correct that?
TIA,
Eric Pretorious
Portland, ORHello!
We are struggling with finding a way for Support Team to easily track all topics with no replies. It would be great to have a page with all these topics or something similar.
Does anyone know how to do that?WP – 4.5.3
bbPress – 2.5.9
Website: https://www.akruto.com/forum/Topic: Detailed user statistics
How do you get detailed bbPress user statistics? Is there a plugin? For a specific member, I’d like to be able to see, for a given period of time, how many posts they make and where they make them. Ideally, also how many replies to other people’s topics (as opposed to posts on their own threads). Bottom line: What is the best way to get user statistics?
I have already posted this question, but has not been approved by moderators. Please approve, has been entire day already, thank you.
I have issue where bbPress HTML code is being written above the <doctype> declaration in my page, but this only happens when not logged in / signed in to WordPress. This is for Forums and Topics pages, and none others. When logged in, then HTML code is written in its proper place. I will attach a screenshot showing both instances, the top being when not signed in (HTML is out of place, before <doctype>), the bottom when signed in (HTML is correctly placed in body, and <doctype> comes first as it should).

Any ideas on where this HTML might be called differently, depending on whether or not user is logged in? I have tried disabling plugins. Perhaps it is something with my theme. My site can be viewed at http://www.lexiconleep.com/forums/forum/leep-questions-answers/ … I wonder if it has something to do with assigning a forum role to anonymous users..? Perhaps anonymous (not logged in) users need to have a forum role … I will look into this. Thanks!
I want to do CSS for just the forum thread pages themselves (ie if I change the title color, I don’t want that change to apply to the list of forums or to other parts of my WordPress theme).
I’m working in the style.css file. How can I target bbpress’s templates and pages.phps?
I found the excellent article by Tanner Moushey on how to create groups programmaticaly: https://tannermoushey.com/2014/08/create-groups-buddypress/
However I also need to create a forum for each group, and I canβt get his suggestion of using groups_new_group_forum to work. I read other posts of getting function doesnt exist error for bp_forums_new_forum (which groups_new_group_forum calls), but I believe I found the right requires to get that function, and everything it depends on, but now I am getting an error about null several layers down within bb code.
Here is my code so far:
<?php
/* Show the errors in browser */error_reporting(E_ALL);
ini_set('display_errors', 1);/** Load WordPress Bootstrap */
require_once( dirname( __FILE__ ) . '/../admin.php' );/** Load WordPress dashboard API */
require_once(ABSPATH . 'wp-admin/includes/dashboard.php');wp_dashboard_setup();
do_action('bbpress_init');
?>
<H1>Add Groups</H1>
<?php
$args = array(
'group_id' => 0,
'creator_id' => 0,
'name' => 'California',
'description' => 'For people located in California',
'slug' => 'california',
'status' => 'public',
'enable_forum' => 1,
'date_created' => bp_core_current_time()
);?>
<p>Creating group '<?php echo $args[name] ?>'</p>
<?php
$newgroupid = groups_create_group($args);
?>
<?php
////////////////////////////
// Now creating a new forum// Not needed for get groups_create_group - this already got included
// require_once(ABSPATH . 'wp-content/plugins/buddypress/bp-groups/bp-groups-forums.php');// For bp_forums_new_forum
require_once(ABSPATH . 'wp-content/plugins/buddypress/bp-forums/bp-forums-functions.php');// For bb_new_forum
require_once(ABSPATH . 'wp-content/plugins/buddypress/bp-forums/bbpress/bb-includes/class.bb-walker.php');
require_once(ABSPATH . 'wp-content/plugins/buddypress/bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php');// For bb_current_user_can
require_once(ABSPATH . 'wp-content/plugins/buddypress/bp-forums/bbpress/bb-includes/functions.bb-capabilities.php');// Example from: http://buddypress.wp-a2z.org/oik_api/groups_new_group_forum/
$newforumid = groups_new_group_forum($newgroupid,'California','For people located in California');?>
<table>
<tr><td>Newly created group id:</td><td><?php echo $newgroupid ?></td><td>Groups</td>
</tr>
<tr><td>Newly created forum id:</td><td><?php echo $newforumid ?></td><td>Forums</td>
</tr></table>
It throws this error:
Fatal error: Uncaught Error: Call to a member function get_var() on null in /Users/eyespider/projects/justiceserved/local/wp-content/plugins/buddypress/bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php:992 Stack trace:
#0 /Users/eyespider/projects/justiceserved/local/wp-content/plugins/buddypress/bp-forums/bp-forums-functions.php(123): bb_new_forum(Array)
#1 /Users/eyespider/projects/justiceserved/local/wp-content/plugins/buddypress/bp-groups/bp-groups-forums.php(47): bp_forums_new_forum(Array)
#2 /Users/eyespider/projects/justiceserved/local/wp-admin/custom/add-groups2.php(67): groups_new_group_forum(38, 'California', 'For people loca...')
#3 {main} thrown in /Users/eyespider/projects/justiceserved/local/wp-content/plugins/buddypress/bp-forums/bbpress/bb-admin/includes/functions.bb-admin.php on line 992