Search Results for 'wordpress'
-
AuthorSearch Results
-
June 16, 2016 at 7:14 pm #254701
In reply to: CV upload in Profile
danbp
ParticipantAdd a a new field group to profiles, call it CV, add some fields and options and you’re done.
As you certainly want to get this part a bit apart of the other profile fields, you can also use this plugin who brings a nice tabbed profile page.
June 16, 2016 at 6:21 pm #254691In reply to: Adding another Sublink Under Members/Groups?
r-a-y
KeymasterGroup Extension API only works for groups. Andrew is asking about member navigation.
There is currently no member extension API.
Check out the
bp_core_new_nav_item()andbp_core_new_subnav_item()functions inbp-core/bp-core-buddybar.php:
https://buddypress.trac.wordpress.org/browser/tags/2.6.0-rc1/src/bp-core/bp-core-buddybar.php?marks=15-38,369-399#L15You’d want to register your navs on the
'bp_setup_nav'hook.eg.
function my_custom_bp_nav() { // Fill this in from the documentation. $nav_args = array(); // Add nav. bp_core_new_nav_item( $nav_args ); // If you need to add another nav, copy and paste the block above and paste here. } add_action( 'bp_setup_nav', 'my_custom_bp_nav' );Check out this older example on the codex as well:
https://codex.buddypress.org/developer/function-examples/core/bp_core_new_nav_item/Depending on your requirements, you could also use the BP Skeleton Component:
https://github.com/boonebgorges/buddypress-skeleton-componentHowever, that might be too much for what you need.
June 16, 2016 at 4:06 pm #254664sharmavishal
Participantif it helps following non bp errors with rc1
Notice: bbp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 2.3.) in wp-includes/functions.php on line 3897
Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). === Trace: #6 wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php(421): get_current_user_id() #7 wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php(31): Yoast_Notification_Center->retrieve_notifications_from_storage() #8 wp-content/plugins/wordpress-seo/admin/class-yoast-notification-center.php(49): Yoast_Notification_Center->__construct() #9 wp-content/plugins/wordpress-seo/wp-seo-main.php(373): Yoast_Notification_Center::get() #10 [internal function]: load_yoast_notifications(”) #11 wp-includes/plugin.php(525): call_user_func_array(‘load_yoast_noti…’, Array) #12 wp-settings.php(277): do_action(‘plugins_loaded’) #13 /opt/www/hobbysocialnetwork.c in wp-includes/functions.php on line 3897
even with yoast seo disabled the site doesnt come up
June 16, 2016 at 2:21 pm #254640In reply to: I want to make sign up process like facebook
dhaval88
Participant@werose- thank you for your reply.
you say about facebook api plugin?
https://wordpress.org/plugins/facebook-api/
but i think this help only in send, share, follow, like button, comments etc…
can we make signup process like facebook using this plugin?June 16, 2016 at 1:16 pm #254636valuser
Participantsee
BuddyPress 2.6.0 Release Candidate 1…
perhaps best, if not already, to leave a ticket at
https://buddypress.trac.wordpress.org/newticket
hope you get it sorted.
June 16, 2016 at 12:37 pm #254630In reply to: @mention notification not working on blog posts
danbp
Participantnotification not working on blog posts.
It’s not implemented. See why on #4046
But you can eventually try the one or other plugin actually available on WP repository.
Particulary Mentionable, Email Mentioned or Mention comment’s Authors
June 16, 2016 at 10:29 am #254625In reply to: Adding Sub-groups
sharmavishal
Participantgo to pull requests
https://github.com/ddean4040/BP-Group-Hierarchy/pulls
exampe: check christianwach request…you would get the files he would have modified….
you can see the latest one would be for BuddyPress 2.6 which would release soon…
dont think so this would be merged in bp…the moderators would have better idea on this…but BP Group types is comming in BuddyPress 2.6..just wait for that if that would meet your requirements cause that would be in the core of bp…
June 16, 2016 at 7:40 am #254619In reply to: Problems with filtering the activity stream
Henry Wright
ModeratorCan you log in to wordpress.org?
danbp
Participantr-a-y
KeymasterContact the authors of rtMedia:
https://wordpress.org/plugins/buddypress-media/June 15, 2016 at 2:35 pm #254579In reply to: Solve Error 500
danbp
ParticipantIt’s a common issue but not directly related to BuddyPress. Some ideas and hints here.
June 15, 2016 at 1:25 pm #254578In reply to: Solve Error 500
castresana
ParticipantMore info, the issue of Error 500 is only for Administrators.
Everybody below this WordPress level has no problems at all accessing the /wp-admin/ area.
Ideas are welcome! 🙂June 15, 2016 at 12:25 pm #254574In reply to: Show activity post form in @mentions page
binary10
Participant@danbp I mean the page where all the @mentions for the user are listed like this one:https://mercime.files.wordpress.com/2015/03/activity-mentions.jpg
June 15, 2016 at 11:53 am #254573Topic: Blank notifications in Buddypress
in forum How-to & Troubleshootingmyndphunkie
ParticipantHi Guys,
BuddyPress v2.5.3
Wordpress v4.5.2
My own theme created with ArtisteerGetting blank notifications for every user. Seems to happen when something is triggered (ie: user is mentioned in the activity wall or something else).
Never used to happen, can only assume an update has caused it.
Has anyone else had this? Is there a log file I can check to see what’s going on?
Thanks
June 15, 2016 at 6:45 am #254566In reply to: register page problem
Masoud
Participantsolved it.
hopefully someone from wordpres.org helped me.
here is the link for anyone in the future faced the same problem as me.
wordpress.org pagethe answer was:
If you want to add some user meta info in user database while registration you need to use “user_register” filter like below code:Add code in your themes function.php fileadd_action( 'user_register', 'my_user_meta_save', 10, 1 ); function my_user_meta_save( $user_id ) { if ( isset( $_POST['first_name'] ) ) update_user_meta($user_id, 'first_name', $_POST['first_name']); }June 14, 2016 at 4:48 am #254536In reply to: WP User Avatar Not Showing in BuddyPress
r-a-y
KeymasterSo what you’re looking for is to use a custom user avatar instead of BuddyPress’?
Try the following code snippet in your theme’s
functions.phporwp-content/plugins/bp-custom.php:remove_filter( 'get_avatar', 'bp_core_fetch_avatar_filter', 10, 6 );Update – That code snippet only reverts the avatar in WordPress posts and comments.
To override BuddyPress avatars in BuddyPress content with a custom avatar solution, you would have to hook into the
'bp_core_fetch_avatar'filter:
https://buddypress.trac.wordpress.org/browser/tags/2.5.3/src/bp-core/bp-core-avatars.php?marks=534-549#L534June 14, 2016 at 3:59 am #254535In reply to: WP User Avatar Not Showing in BuddyPress
mmurguia
ParticipantThis is not exactly what I need. Accounts are not created with buddypress or wordpress. They are created by Xenforo. This creates an account in wordpress, and also imports the users avatar correctly in wordpress. so it is a valid wp account with user avatar. I’d like Buddypress to use the wordpress avatar. Is this possible?
Thanks!
M
June 13, 2016 at 11:07 pm #254530In reply to: Registration activation emails not being sent
danbp
ParticipantPlease read here first.
Try https://wordpress.org/plugins/bp-email-to-wp-mail-from-bridge/June 13, 2016 at 10:02 pm #254522In reply to: WP User Avatar Not Showing in BuddyPress
mmurguia
ParticipantHey @djpaul we probably misunderstand each other. I’m just saying that if a WordPress account has an avatar image, BuddyPress should use it.
June 13, 2016 at 2:37 pm #254507shanebp
ModeratorThe WP function to determine if the current user is an administrator is:
is_super_admin()So something like:
if ( is_super_admin() ) // show the menu itemJune 13, 2016 at 9:12 am #254497In reply to: Problems with filtering the activity stream
Henry Wright
ModeratorIn that case, this could be a bug. It seems the apostrophe isn’t being handled properly upstream. Can you open a ticket for this on Trac?
June 13, 2016 at 7:18 am #254488In reply to: Best way to make private network?
sharmavishal
Participanthttps://wordpress.org/plugins/bp-simple-private/ is a newer plugin
June 13, 2016 at 7:17 am #254487In reply to: Best way to make private network?
sharmavishal
Participantcouple of plugins to make bp site private
ex: https://wordpress.org/plugins/buddypress-members-only/screenshots/
disable user can register option in general settings
you can use any page as home page via settings-reading option
to redirect user bp login redirect plugin to your activity page
June 12, 2016 at 10:08 pm #254478In reply to: Avatar URL
Paul Wong-Gibbs
KeymasterJust use WordPress’ get_avatar() function: https://codex.wordpress.org/Function_Reference/get_avatar
Paul Wong-Gibbs
KeymasterThis sounds like an email sent by the paidmembershipspro plugin, which BuddyPress has no control over. Have you contacted that plugin’s developers for support? Or posted on its WordPress.org support forums?
-
AuthorSearch Results