Skip to:
Content
Pages
Categories
Search
Top
Bottom

userpro bbpress avatar display

Published on June 10th, 2015 by stiffmeister12

I am having trouble getting my userpro avitars or profile pictures to be displayed on the bbpress home page and topics page where its says “freshness” or “latest post”. The profile pictures do show up when you go into a topic and reply but not on the home page. I want the little picture next to posters name under “freshness” or “latest post”. What code would i have to change and where can i find it? Im using a custom theme by the way.

Admin only able to create new topic no other users!!

Published on June 10th, 2015 by Ahir Hemant

Hello,

I want one urgent solution! Please help me.

Question:
Users also able to create new topic but i don’t want this.
Only admin can post new topic no other users are able to create new topic how to stop this ?

Thanks
Ahir Hemant

Admin only able to create new topic no other users!!

Published on June 10th, 2015 by Ahir Hemant

Hello,

I want one urgent solution! Please help me.

Question:
Users also able to create new topic but i don’t want this.
Only admin can post new topic no other users are able to create new topic how to stop this ?

Thanks
Ahir Hemant

MySQL query for user subscriptions

Published on June 10th, 2015 by mtupuschies

Hi,

I need some help with a query. Is there a way to list all users and show their subscriptions?
What I would need was a table which shows if a user is subscribed to a certain forum or not.
Can this be done somehow without going through each users profile?

Thanks in advance,

Marcel

Kunena 3 import to bbPress

Published on June 10th, 2015 by bexinul

Hello,

I am trying to import my Kunena 3 forum to bbPress when switching from Joomla to WordPress.

The import always fails with this error:


WordPress database error: [Table 'bcbrainois2.jos_kunena_topics' doesn't exist]
SELECT convert(kunena_messages.id USING "utf8") AS id,convert(kunena_messages.catid USING "utf8") AS catid,convert(kunena_messages.thread USING "utf8") AS thread,convert(kunena_messages.ip USING "utf8") AS ip,convert(kunena_messages.userid USING "utf8") AS userid,convert(kunena_messages.subject USING "utf8") AS subject,convert(kunena_messages_text.message USING "utf8") AS message,convert(kunena_messages.time USING "utf8") AS time FROM jbcb_kunena_messages AS kunena_messages LEFT JOIN jbcb_kunena_messages_text AS kunena_messages_text ON kunena_messages_text.mesid = kunena_messages.id LEFT JOIN jos_kunena_topics AS kunena_topics ON kunena_messages.thread = kunena_topics.id WHERE kunena_messages.parent != 0 LIMIT 0, 100

My table prefix is jbcb_ I don’t know why the importer tries to import a jos_ table which doesn’t exist…

And the result of the import is a forum without any post, just the topics are imported.

Can someone help me on that one?

Thanks a lot,

Nicolas

New topic content not showing.

Published on June 9th, 2015 by timot.mo

Whenever a new topic is made, the content doesn’t show up. Disabled theme and plugins but still have issues.. Screenshot here.

https://www.dropbox.com/s/svl1x0021bimkcx/Screenshot%202015-06-09%2017.08.19.png?dl=0

Thanks for any help on this!

Very simple forum Signature with Xprofile

Published on June 9th, 2015 by patrix87

I modified a little script I found inside a plugin named “bbp signature” https://wordpress.org/plugins/bbp-signature/
That plugin actually does not work with Buddypress, it is a bbpress plugin
[modified by moderator]

But the code wasn’t too terrible. even though I only kept a few line of it.

So here’s the solution;

make sure you have buddypress with xprofile enabled *(extended profiles)

1. Create a new text box field in Xprofile and name it “Signature”. *(caps is important, no quotation mark.)

Then add that code to the function.php of your child theme.


//Add Signature

function bbp_reply_content_append_user_signature( $content = '', $reply_id = 0, $args = array() ) {
	// Default arguments
	$defaults = array(
		'separator' => '<hr />',
		'before'    => '<div class="bbp-signature">',
		'after'     => '</div>'
	);
	$r = wp_parse_args( $args, $defaults );
	extract( $r );

	// Verify topic id, get author id, and potential signature
	$reply_id  = bbp_get_reply_id       ( $reply_id );
	$user_id   = bbp_get_reply_author_id( $reply_id );
	$signature = xprofile_get_field_data( 'Signature', $user_id );

	// If signature exists, adjust the content accordingly
	if ( !empty( $signature ))
		$content = $content . $separator . $before . $signature . $after;

	return apply_filters( 'bbp_reply_content_append_signature', $content, $reply_id, $separator );
}

add_filter( 'bbp_get_reply_content', 'bbp_reply_content_append_user_signature', 1, 2 );

That’s it !

PS. If you want to enable HTML in xprofile there is a way but it’s risky.
you can read about it here : https://buddypress.org/support/topic/html-in-profile-field-again/

I need help; having problems with bbPress

Published on June 9th, 2015 by shaquana_folks

To Whom It May Concern,

I’m trying to configure forums properly for my site and for some reason the forum samples that I created from my back end are not showing up on my www.myloopnetwork.com website under the “Forums” tab. So I went to check out the Error Log from my hosting plan back end and saw this message:

20150609T144202: www.myloopnetwork.com/index.php
WordPress database error Table ‘wordpress_iomdefe35a.wp_jgts_bb_forums’ doesn’t exist for query DESCRIBE wp_jgts_bb_forums; made by require(‘wp-blog-header.php’), require_once(‘wp-includes/template-loader.php’), do_action(‘template_redirect’), call_user_func_array, bp_template_redirect, do_action(‘bp_template_redirect’), call_user_func_array, bp_screens, do_action(‘bp_screens’), call_user_func_array, bp_forums_directory_forums_setup, do_action(‘bbpress_init’), call_user_func_array, bp_forums_load_bbpress

There were a lot of other errors listed on that log but I already spoke to a representative of my hosting plan service and he said that he doesn’t see any other errors on that log from his end, except this one and another error (which I’m currently trying to resolve with the BuddyPress plug in moderators). So is there a reason why the above message is showing up? Please let me know what necessary steps I must take to get this resolved.

I’m currently testing everything out on the latest version of the Twenty Fifteen theme (ideally, I want to use this Magnus WordPress Theme [1.6 Version] for my site), I only have the BuddyPress plug in (now running a 2.3.1 version), the bbPress plug in (now running a 2.5.7 version) and a W3 Total Cache plug in (running a 0.9.4.1 version) currently activated. My hosting provider is with iPage, which is running a 5.0 PHP version and is running NGINX for their server. I hope all this info will be helpful in figuring out what’s going on. Any feedback or any other suggestions you may have will be greatly appreciate it.

Thank you in advance.

Group Privacy (forum post showing up in other private groups)

Published on June 9th, 2015 by jnezon

Running bbpress 2.5.7 and buddypress 2.3.1 and a couple of extensions wordpress version 4.2.2- the issue I am seeing is that posts from other groups (all of which are set to be private) are now showing in each others posts.

Site is developer-ims.alcatel-lucent.com (I’ll need to pm with account)

I cant figure out why / what more to check / how to repair (tried all the tools)

Posting with php directly to bbPress fails. how to do it properly?

Published on June 9th, 2015 by grayson_marik

Hi there,

on my page i use the wordPress function to do some automatted posts. however, they do not show up. Only after doing the repair tools they are available.

This is how i do it :

`
$post = array(
‘post_title’ => $topic,
‘post_content’ => $message2,
‘post_type’ => ‘topic’,
‘post_status’ => ‘publish’,
‘post_author’ => $authorId,
‘comment_status’=>’closed’,
‘post_parent’ => $parentID,
);

$topicid = wp_insert_post( $post, $wp_error );
`

The post_meta is not set properly. So what do i have to do to make it work?

Skip to toolbar