Forum Replies Created
-
fwiw – the wordpress backend checks if the same user_nicename AND user_login exist. if it does, it will attach a suffix (this is part of wp-includes/registration.php – wp_insert_user)
did you file a trac ticket?
nevermind – found it
https://trac.buddypress.org/ticket/2642try ftp’ing and renaming/removing all the other plugins (probably a bp plugin causing the issue)
located in “youreprefix”_options table :: option_name->bb-config-location
if not there, probably why nothing is being created as buddypress looks there before generating all the tables.
have you searched trac or filed a new report?
– though it is sorted by date_sent
https://svn.buddypress.org/branches/1.2/ has 1.2.6
(always grab the zip too via the browser – https://trac.buddypress.org/browser/branches/1.2 at the bottom of the page – though it may not have bbpress bundled)
first thing i would check is the meta site_option -> bb-config-location and verify the file path is correct. (and that bb-config contains the proper info)
for anyone to test it out and look for bugs – grab the branch:
https://trac.buddypress.org/browser/branches/1.2looks like the group is private – so buddypress will redirect back to the main page (if someone is not a member)
looks like tickets have been cleared by jjj – hopefully everyone can test it out https://trac.buddypress.org/browser/branches/1.2
@andrewteg how to add a view post, view reply, etc…
http://etivite.com/groups/buddypress/forum/topic/how-did-you-add-the-view-blogpost-button/#post-227action is the activity type – such as new_forum_post, new_forum_topic, activity_comment, status_update, or whatever is being used by plugins
i guess it depends on what information you want to display. maybe you need to pass in the object (component) or nothing at all
for a displayed user – stored in `$bp->displayed_user->userdata` (bp automagically pulls in the userdata from bp_core_get_core_userdata during setup_globals)
so for the email address `$bp->displayed_user->userdata->user_email` just create a function around that to echo and hook on an action (ie, `bp_before_member_header_meta` ) used in the member profile template
what params can be passed to the members loop (edit a theme file or create a child theme for members/index)
https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-members-loop/but a small bug, if no xprofile data then not all the members will be returned
https://trac.buddypress.org/ticket/1670like so?
http://etivite.com/groups/buddypress/forum/topic/how-did-you-add-the-view-blogpost-button/#topicjust a link to the forum thread using `bp_activity_thread_permalink`
no comma `’action=new_blog_post&max=5’`
bp_directory_blogs_item or bp_directory_blogs_actions
might point you in the right direction
http://etivite.com/groups/buddypress/forum/topic/quick-tip-highlight-friends-following-own-activity-stream-items/#topicyou can block them all together (but will need to remove the previous ones manually)
https://wordpress.org/extend/plugins/buddypress-block-activity-stream-types/otherwise there is a few hacks in previous threads on how to filter on the activity array and unset items.
could redirect before loading the single/activity/permalink template -> `bp_core_redirect( $bp->loggedin_user->domain );`
just hook on the action bp_activity_screen_single_activity_permalink
same for mark user as spammer
https://trac.buddypress.org/ticket/2575bumping it up with a simple solution via a filter
http://etivite.com/groups/buddypress/forum/topic/quick-tip-added-banned-email-domain-check-to-multisite-buddypress-registration/#topicthe check is just missing in the buddypress signup process vs multisite
i can’t find a template tag just for it but you can find it via
`$blogs_template->blog->blog_id`
bp-activity/bp-activity-filters.php