Search Results for 'buddypress'
-
AuthorSearch Results
-
July 2, 2016 at 11:38 pm #255664
In reply to: How to make a timeline view for the activity stream
dsantoschabrier
ParticipantTo make this happen. Do I Have to modify the bp-activity-functions.php or buddypress.js?
July 2, 2016 at 8:24 pm #255660In reply to: conflict buddyPress with woocommerce
rezza72
ParticipantHI
i use SocialChef theme .all active plugins :
bbPress
BuddyPress
ITRO Popup Plugin
TablePress
TablePress Extension: Responsive Tables
Telegram for WordPress
TinyMCE Advanced
Wise Chat
WooCommerce
WP Statistics
WR PageBuilderJuly 2, 2016 at 4:48 pm #255658ekruep
ParticipantOkay, just in case anyone else is wanting to do this, my developer helped me implement a solution!!
Here is the function he wrote and placed in the bp-custom.php file.
function add_front_menu_item( ) { global $bp; $args = array( 'name' => __('Home', 'buddypress'), 'slug' => 'front', 'default_subnav_slug' => 'public', 'position' => 10, 'show_for_displayed_user' => false, 'screen_function' => 'bp_custom_user_nav_item_screen', 'item_css_id' => 'custom-class' ); bp_core_new_nav_item($args);I hope this helps someone else save time and frustration!
July 2, 2016 at 3:59 pm #255657In reply to: bp-portfolio: Fatal error in X Theme
andrewlavila
Participant@nickdanks I’m having this same issue. I was thinking maybe it’s due to the latest Buddypress update, since its affected some of my other plugins already. Did you happen to find out anything about what causes this issue or come up with a solution?
July 2, 2016 at 2:28 am #255648In reply to: Activity embeds in activity stream
binary10
Participantit is not working really but what I see is that if you add ?embed=true after the Permalink and open it in a new tab then it returns the embed content so that means buddypress is working correctly but somehow it doesn’t work in the activity stream. Can I add buddypress as an oembed provider to make it work?
ThanksJuly 1, 2016 at 11:24 pm #255647In reply to: Confirmation Email
Dono12
ParticipantThanks for your prompt response and your help but that function did not achieve the goal I was looking for. I wanted the activation Key to come from Cymi User Extra Field. I found a solution from someone with a similar problem but it is a little too extreme for me. The result you get is a Cymi User Extra Field Key/URL, Looks like This(cimy_key=88fddcb568dcf2d6). It involved editing a core Buddypress file wp-content/plugins/buddypress/bp-core/bp-core-filters.php. Can you help with a function for my functions.php or bp-custom to achieve the same goal. If it’s not too much maybe generate the Cymi-Key in the Buddypress Email Template though not a priority. I’m fully aware that editing core files is not practical, especially being that you lose it during updates.
https://buddypress.org/support/topic/activation-email-key-doesnt-work-i-may-have-the-fix/
function bp_core_activation_signup_user_notification( $user, $user_email, $key, $meta ) { $activate_url = bp_get_activation_page() . "key=$key"; $activate_url = esc_url($activate_url); $admin_email = get_site_option( 'admin_email' ); if ( empty( $admin_email ) ) $admin_email = 'support@' . $_SERVER; // Then it ends with, on line 255 add_filter( 'wpmu_signup_user_notification', 'bp_core_activation_signup_user_notification', 1, 4 );July 1, 2016 at 10:55 pm #255646In reply to: Hide admins from group member list
danbp
ParticipantHi @allisonnance,
Use a child theme to do this.
Copy member.php from bp-templates/bp-legacy/buddypress/groups/single/members.php
to
your-child/buddypress/groups/single/members.phpRemove line 11
<?php if ( bp_group_has_members( bp_ajax_querystring( 'group_members' ) ) ) : ?>and replace by this one:
<?php if ( bp_group_has_members( 'exclude_admins_mods=1'. bp_ajax_querystring( 'group_members' ) ) ) : ?>Save. You’re done.
If you want to remove also Group Admin and Mods from the group header, remove the whole div content of <div id=”item-actions”> in group-header.php, in same directory as above members.php
Also to do from within child theme.Reference:
July 1, 2016 at 7:04 pm #255638In reply to: Confirmation Email
David Cavins
KeymasterI’m not sure what behavior you’re aiming for, but this snippet will disable the confirmation email and log the user in automatically upon successful registration.
<?php add_action( 'bp_core_signup_user', array( $this, 'disable_validation_of_new_users' ) ); add_filter( 'bp_registration_needs_activation', '__return_false' ); add_filter( 'bp_core_signup_send_activation_key', '__return_false' ); function disable_validation_of_new_users( $user_id ) { // Get the user's activation key for BP. This is the activation_key in user_meta, not the key in the user table. $user_key = get_user_meta( $user_id, 'activation_key', TRUE ); // Activate the signup $awuser = apply_filters( 'bp_core_activate_account', bp_core_activate_signup( $user_key ) ); // Automatically log the user in. // Thanks to Justin Klein's wp-fb-autoconnect plugin for the basic code to login automatically $user_info = get_userdata($user_id); wp_set_auth_cookie($user_id); do_action( 'wp_signon', $user_info->user_login ); bp_core_add_message( __( 'Your account is now active!', 'my-plugin-slug' ) ); buddypress()->activation_complete = true; }July 1, 2016 at 1:50 pm #255631In reply to: PHP Fatal error on BP 2.6.1 activation
danbp
ParticipantIf you have FTP access to your site, rename the buddypress folder like this: wp-content/plugins/xxxx_buddypress
This will deactivate the plugin and let you come back to your site admin. Once you have access to your admin, upload latest BuddyPress 2.6.1.1. Before to activate it, go back to FTP and delete xxxx_buddypress.
Now you can activate BP and normally, anything should work.
July 1, 2016 at 1:44 pm #255629In reply to: Translation stop working after update
jangolin
ParticipantI had the same problem and my solution was what I wrote before
Make a new po file in poedit and mo file, upload the to your buddypress and theme language maps
Check your General settings that you still have Danish as your language
Clear all cache and refresh site
You can also try to translate with Loco translate plugin and see if it makes any difference
July 1, 2016 at 1:41 pm #255628In reply to: Translation stop working after update
danbp
ParticipantThe Danish translation is not complete… so the automatic translation doesn’t work.
Read from here to go further:
July 1, 2016 at 1:37 pm #255627In reply to: Help me sort out my BuddyPress install
danbp
Participantpositionning: check CSS pseudo class :before or :after
buddypress.pot: this file does nothing! It contains only the strings you can translate. If you need a translation, you have to create a po and a compiled mo file. To do this you need a tool like poEdit.
Any code placed in bp-custom.php stays untouched after an update. It works like a child-theme.
July 1, 2016 at 1:23 pm #255626In reply to: Translation stop working after update
hisselfandco
ParticipantHi jangolin
Thanks for your reply – KLEO Theme language files are there…
Problem I have is finding how to make buddypress find the Danish translations .po and .mo I have in wp-content/languages/plugins/
I have no problems with other plugins only buddypress….July 1, 2016 at 1:17 pm #255625In reply to: PHP Fatal error on BP 2.6.1 activation
jfking
ParticipantHi please am having this problem….
Fatal error: Class ‘BP_Members_Component’ not found in /home/agxiscom/public_html/wp-content/plugins/buddypress/bp-members/bp-members-loader.php on line 23
couldnt access http://agxis.com.ng/wb-admin or anything and cant fix the problem from my cpanel….
please what can i do to solve this problem…… my people are complaining……
July 1, 2016 at 1:00 pm #255622In reply to: Buddypress
sharmavishal
Participantcheck this 2 plugins
https://wordpress.org/plugins/buddypress-docs/
https://wordpress.org/plugins/buddydrive/
…you can create hidden groups then….you can disable the activity component via settings-buddypress
July 1, 2016 at 12:55 pm #255621In reply to: Link to User’s Group’s Forums
sharmavishal
Participant“bbpress group forums associated with the user” this is not possible. you can associate bbpress forums to a specific group only
July 1, 2016 at 12:53 pm #255620In reply to: Getting error saying Buddypress Group photo large?
sharmavishal
Participant@pfeufer start from here…see if you got the basic requirements on for BP install
July 1, 2016 at 12:40 pm #255618In reply to: Translation stop working after update
hisselfandco
ParticipantUsing v 2.6.1.1
I do NOT have a folder: wp-content/buddypress/languages/
And I DID add the .po and .mo to wp-content/languages/plugins/
I am not using loco translateHave checked po language files and translation is still there….
July 1, 2016 at 12:05 pm #255615In reply to: Translation stop working after update
danbp
Participantyou used the wrong directory for translation.
The directory to use IS NOT wp-content/buddypress/languages/
if you manually upload a po/mo for BP, add it to
wp-content/languages/plugins/buddypress-xx_XX.mo / po
July 1, 2016 at 11:41 am #255614In reply to: Translation stop working after update
hisselfandco
ParticipantThanks for the tip
Using KLEO theme – can see that the language file is still there.
Still having problems with getting buddypress to find the translations….July 1, 2016 at 10:32 am #255613In reply to: Could not Save Basic Settings
siparker
ParticipantFor anyone who is looking for the solution for not being able to save buddypress settings.
Various plugins cause issues with adding various extra css in the admin area.
in my case there was a css file from a Codecanyon Woozone plugin which hid the P tags in the buddypress options pages
use firebug and find the bottom div that cotnains the submit button and disable any css that is hiding it and you can click the submit button.
after you have done that you might want to tell the plugin developer that caused the issue about it.
TLDR the button is there its probably just hidden. use firebug or chrome tools to unhide it and click save.
July 1, 2016 at 10:30 am #255612In reply to: Translation stop working after update
jangolin
ParticipantI dont what theme you use but i found the solution for my problem
The latest update from my theme erased the theme language files which made that the byddypress translation didnt show, I had to translate my theme language file all over again and upload po and mo file and now buddypress is showing again.
Check if you theme language files are still there
July 1, 2016 at 9:44 am #255609In reply to: Translation stop working after update
hisselfandco
ParticipantHaving same problem with Danish language.
Have added both .mo and .po to wp-content/buddypress/languages/ but can’t see the translations…
However, bbpress seems to be getting the translations OK …July 1, 2016 at 12:19 am #255607In reply to: Getting error saying Buddypress Group photo large?
pfeufer
ParticipantI disabled ALL plugins except for the Buddypress plugin. I am also using the Twenty Fifteen theme. The error is still happening when I go to change the photo (avatar) in the Buddypress group: ““Upload Failed! Error was: That photo is too big. Please upload one smaller than”
1. Can you please provide more information on how to fix this issue?
2. You mentioned “cache software”… Should I have a cache software installed to clear the cache?
3. You also mentioned debugging. When I read the content on the page you provided a link for, it talks about developers and using debugging during development. How does this apply to my situation?Kindly address each of the 3 questions above so I can clearly understand what to do.
Thanks!
JohnJune 30, 2016 at 11:41 pm #255606ekko848
ParticipantNote I am still on buddypress 2.5.2 (the same version I was on a few weeks ago when this was working).. maybe I should try to update and see if that fixes the issue?
Or can my function to insert the custom HTML in every users field be optimized or targeted better with some different code?
-
AuthorSearch Results