redirect after account activation for forum using bbpress and buddypress
redirect after account activation for forum using bbpress and buddypress
redirect after account activation for forum using bbpress and buddypress
Look at bp_group_request_user_avatar_thumb() in this file /bp-groups/bp-groups-template.php. It has a filter hook. In your filter function, add the $html parameter and set it to false and it should return just an url to the avatar. Then you can wrap it in a href and img tag manually. Or you could write a call directly to … Read more
How to add class to bbPress bbp_get_topic_author_link()?
AFAIR BBPress relies on WP functions with these titles, so most probably this will be helpful: function remove_private_prefix_from_title( $title ) { return ‘%s’; } add_filter( ‘private_title_format’, ‘remove_private_prefix_from_title’ ); And here you can find docs for that filter: private_title_format
You’d need to write a bit of Python (or something) to connect to the live database, read the import data, match to the WP topic, then update the “date created” field (whatever that is exactly… “post publish date” ?) in WP and update it with the value you want from the loaded data. If you … Read more
bbPress is a plugin for WordPress, and it completley integrates in WordPress: forum users and WordPress website users, forum uses WordPress for a lot of things, including login, and forum users get basic access to admin side (only own profile, like all WP users). You can create pages to use forum form for login and … Read more
This took as surprisingly long time but I managed to figure it out: fieldset.bbp-form { display: none; } .page-id-170 * fieldset.bbp-form { display: block !important; } I know this hides all and only shows on page id 170, and this is the opposite of what I asked but it suits my needs. An answer more … Read more
The problem is that $user_id = bbp_get_topic_author_id( $topic_id = 0 ) is malformed. You need to remove the = 0 from $topic_id = 0 and make sure that the variable $topic_id actually contains the ID of the topic you are trying to get the author of.
I add a show contents part referring to a workable previous post with link https://bbpress.org/forums/topic/add-custom-text-fields-to-reply-form/. The below code can provide options for the user to selection. But the selection result could not be shown. I am not sure whether the selection result was added into metabox properly because I can not use the debug function. … Read more
Importing a Google Group to bbPress