Search Results for 'bbpress'
-
Search Results
-
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 992Hi i installed wordpress multisite, How to use video tags in bbpress replies?
Topic: Topic Tags autocomplete
I’m working on a site where users seem to have difficulty using the topic tags. I can’t disable them because the client wants them. I was thinking if there was a drop-down suggestion/auto-complete for the topic tags input it would greatly reduce the incorrectly formatted (making them useless) tags and give people a better idea what belongs in that input.
Is there functionality for this in bbPress that I can enable, or a third party plugin? I’ve found googling for this very frustrating because using the term “topic tag” in a search brings up help forums that have topic tags of my other search terms.
Hi, I’m using bbpress on my upcoming videogame website:
http://20160719.gaming-universe.de/guf/topic/testtest/#post-6864As you can see, the template uses information from the WP theme style.css.
This is overall a good thing but the blockquote function looks off.
I’m also using a couple of plugins so I feel that I might be able to change that via a CSS function but don’t understand CSS very well.When looking at the code, the blockquote seems to use a specific class from one of my plugins:
blockquote class=”d4pbbc-quote”Can anyone point me to where I can change the CSS for the blockquote attribute?
Thanks, Matthias
I forgot to wait updating wordpress until bbpress was also 4.6 ready.
But I have upgraded to wp 4.6 now already and noticed an error.
When bbpress plugin is activated i cannot upload or find images. The media library keeps on looking for something.
And when uploading i get an error “An error occurred in the upload. Please try again later”.
Does this has to do with the wp 4.6 update?
and is the new bbpress update coming soon?
Topic: Menu Reply Widgets
Love the functionality of bbPress and WordPress. Added the reply widget to my main sidebar, but it only displays what topic is being replied to and who replied. I’d like to be able to show at least a portion of the content from, say, the five most recent posts on the forum. Is there an easy way to do that? Perhaps a plugin/widget I should look at?
My site is FAUOwlAccess.com
Thanks.
I have some custom fields in my user account profiles that BBPress Profile view displays just fine, but then all the ones related to Address, display as blank fields. The really weird thing is they are all still editable and will save entered data.
To summarize the issue:
My custom fields for Address do not display content when viewed in BBPress Profile.
If I type in something into one of the blank fields and then click Update, it saves it correctly and then again, still won’t display anything.
IS THIS INTENTIONAL? It seems weird that OTHER custom entries like my mailing list checkbox still display.