Search Results for 'buddypress'
-
AuthorSearch Results
-
April 24, 2014 at 8:07 am #181967
In reply to: Block activity stream types
Prince Abiola Ogundipe
ParticipantYou can try @imath solution and edit it accordingly to include bbpress.
/* beginning of the code to paste in the functions.php of your active theme */
‘function imath_activivity_dont_save( $activity_object ) {
// friendship_created is fired when a member accepts a friend request
// joined_group is fired when a member joins a group.
$exclude = array( ‘friendship_created’, ‘joined_group’);// if the activity type is empty, it stops BuddyPress BP_Activity_Activity::save() function
if( in_array( $activity_object->type, $exclude ) )
$activity_object->type = false;}
‘add_action(‘bp_activity_before_save’, ‘imath_activivity_dont_save’, 10, 1 );’
April 24, 2014 at 7:38 am #181966In reply to: Block activity stream types
palmdoc
ParticipantI also tried the plugin
https://wordpress.org/plugins/buddypress-block-activity-stream-types/
but it seems it’s an orphaned one not updated for a couple of years
What I really hope to do is to prevent bbPress new topics and replies from appearing in the Activity stream – it’s really quite redundant I feelHelp anyone?
April 24, 2014 at 2:05 am #181961BackpackersUnion
ParticipantVICTORY!!!
Hiding in plain sight was,
div class="register-section" id="blog-details-section"Which is the CSS #ID in the BuddyPress register.php file (Both files). So, to hide the “Blog Details” during registration I added,
#blog-details-section { display: none; }to my Child Themes style.css, which solved this lingering problem beautifully.
April 23, 2014 at 11:20 pm #181952stwc
Participant@simple-man this issue has been fixed by the 2.1alpha patch here: https://buddypress.trac.wordpress.org/ticket/5563#comment:24
Thank goodness. It was an issue with a missing field in my wp_signups table, which was there either because I downgraded from a Multisite install or because I have Gravity Forms installed. All seems well now.
April 23, 2014 at 10:05 pm #181950OrlandoDS
ParticipantHey,
I’m had the same problem and resolved the issue;
Cause of the problem
Wordpress database error Unknown column ‘signup_id’
column: signup_id missing from database table wp_signupsSolution
create primary key column titled ‘signup_id’ by entering the following sql statement at the mysql prompt:
ALTER TABLE 'database_name'.'wp_signups' ADD COLUMN 'signup_id' INT NOT NULL AUTO_INCREMENT;Problem History
Error: Invalid Activation key
Also, manage signups view is empty, but I have attempted to register multiple userssystem
- LAMPP
- WordPress Version 3.6.1
Unsuccessful Resolutions:
- activate 2012 theme
- deactivated all plugins
- deleted + reinstalled buddypress
Known Database Issues:
- the field user_activation_key is empty in table wp_users
- the field activation_key is NOT empty in table wp_signups
- column signup_id is missing from table wp_signups
- there is no PK or FK column for table wp_signups
apache error log
Found some useful output from apache log file, which is what led my solution:
[Wed Apr 23 20:58:19 2014] [error] [client xx.xx.xxx.xxx] WordPress database error Unknown column 'signup_id' in 'order clause' for query SELECT * FROM wp_signups WHERE active = 0 AND activation_key = 'xxxxxxxxxxxxxxxxxxxxxxxxxxx' ORDER BY signup_id DESC LIMIT 0, 1 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_core_screen_activation, bp_core_activate_signup, BP_Signup::getTo the BP devs, I hope that’s enough to solve the problem at the application code level, instead of the database hack I used. I have a feeling the error might be due to using an old WP version, as the error appears to stem from the core WP files and not the BuddyPress files…
April 23, 2014 at 6:01 pm #181945In reply to: Renaming Components
SK
ParticipantWow… that’s a lot of work (changing every mention of the word “group” in the po file one by one)! Even with that poedit program, it was a tedious and time consuming task because there was no “find and replace” functionality and with a text editor (I use TextPad), you have to be sure not to rename any file names. There needs to be s a simpler way.
Wait till you realize that all your .po file changes will be lost the moment you update Buddypress.
April 23, 2014 at 4:53 pm #181943In reply to: Traslation: Lost Password
danbp
Participantola !
I have no idea, but some paths…First, if you altered the user.php, it’s the wrong way, because it’s a core file. Translation modification should only be done in the po/mo file
Secondly, you have a special character (tilde) in the word contraseña. Would probably be more secure that you use the HTML entity for this.
Don’t know what you did before the errors screen, but you have to go back to a previous stage, without errors. Deactivate all plugins, except BP. Remove the WP translations files from the languages folder, and try to enter your install in english…
Please read more about BuddyPress language here.
April 23, 2014 at 3:34 pm #181941elaborate
ParticipantI guess I might as well add the details now.
My work so far has involved editing the bbPress and BuddyPress template files. I add the forms from the bbPress Edit page’s template file and paste them in the BuddyPress Settings page’s template file, which I then use.
My problem is that the data for the users profiles does not appear in the relevant bbPress Edit fields now that the forms reside on the BuddyPress settings page with a different URL.
I looked up how HTML forms work with PHP and found out that the
actionattribute in a<form>tag is the URL for the destination of the input, so you might think that changing the URL of the bbPress forms to the BuddyPress Settings page would solve the problem, but it doesn’t.Doesn’t the user data need to be sent to and retrieved from the database somehow?
Thanks.
April 23, 2014 at 6:16 am #181927In reply to: Activating buddypress on the latest WordPress
Mathieu Viet
Moderator1. Do you use BuddyPress on a non multisite config ?
2. Do you have a lot of members ?
3. Do you allow registration ?
4. If so and if you have an access to a MySql admin tool such as PhpMyAdmin, can you run this query :SELECT count(u.ID) FROM wp_users as u LEFT JOIN wp_usermeta as um ON u.ID = um.user_id where u.user_status = 0 and um.meta_key = 'activation_key';‘wp_’ might be to replace with the table prefix you may have customized in wp-config.php
Once done can you share the result of the query in this forum ?
April 22, 2014 at 9:53 pm #181917Ircsome
ParticipantHave deactivated an ancillary BP plugins, and deactivated and reactivated just Buddypress. No change, still receive “There was an error saving group details, please try again.”.
April 22, 2014 at 7:37 pm #181913In reply to: Wording for "Check Your Email For Activation"
April 22, 2014 at 5:34 pm #181909In reply to: What happened to these Buddypress Plugins?
aces
ParticipantYou could try putting the following in you child theme functions.php file
function bbg_enqueue_styles() { remove_theme_support( 'bp-default-responsive' ); } add_action( 'wp_enqueue_scripts', 'bbg_enqueue_styles', 5 );For more info ( including important details ) see: https://buddypress.trac.wordpress.org/ticket/3881#comment:2
——————————————————————————————–
EDIT: I’ve just noticed that you have been told this answer before: https://buddypress.org/support/topic/upgraded-and-now-nav-and-sidebar-is-responsive/#post-150007
Please start your own Topic, rather than jump in on others, which can get confusing for those trying to fix a different problem.
In your New Topic please describe more thoroughly the actual problem you personally are having and what you have already tried, including links to the theme, plugin, snippet or tutorial etc., ( if possible, practical or appropriate )?
April 22, 2014 at 5:06 pm #181907In reply to: What happened to these Buddypress Plugins?
Mr Bronze
Participantplease i need one that can remove buddypress responsive feature from my themes. how do i download it
April 22, 2014 at 11:01 am #181896In reply to: How to make my theme work with buddypress 1.8
Ganesh Paygude
Participantplease anyone can help me buddypress is not working with my directory theme?
April 22, 2014 at 8:58 am #181890Anonymous User 7600456
Inactive@pro120 as @r-a-y says this has been partially resolved in BuddyPress 2.0 which was a performance focused upgrade.
I ended up working on a few other things to make the site a little faster but BuddyPress still represents a significant part of the load time on my site. However, it is nothing like as much as it was in 1.9.x.
The best, quickest and cheapest overhaul of your BuddyPress site that I know of is to upgrade to 2.0 as @r-a-y says.
April 22, 2014 at 7:39 am #181887sharmavishal
ParticipantThis plugin is also interesting BuddyPress Activity Stream Ajax Notifier
April 22, 2014 at 7:09 am #181885sharmavishal
Participantuse this plugin does an auto update of activity RS Buddypress Activity Refresh works fine on BP 1.9 and 2.0 as well.
April 22, 2014 at 5:40 am #181882In reply to: Theme My Login plugin & Buddypress
jeffsun22
ParticipantI am not sure its an install issue. I had the exact same problem. I got rid of my issue by turning off a couple of the buddypress ‘components’ under settings. this made everything work again…. s
April 21, 2014 at 10:23 pm #181875r-a-y
Keymaster@pro120 – This should be partially addressed in BuddyPress 2.0 as we’ve moved the last activity entries directly into the activity component to speed up queries.
If you haven’t upgraded yet, please backup your database before upgrading then give it a shot.
April 21, 2014 at 10:17 pm #181874In reply to: Links on BP homepage make no sense
r-a-y
KeymasterThanks for noticing, stripedsquirrel. All of the pages should work now.
The plugin repository on buddypress.org needs some love that hopefully can be tackled in the future. For now, it is what it is.
April 21, 2014 at 8:57 pm #181856In reply to: BP 2.0 | Fatal Error, Profile Updates
r-a-y
KeymasterThanks for the report, @rewindcaz.
A ticket was created and addressed here:
https://buddypress.trac.wordpress.org/ticket/5571This will be added for v2.0.1 in the upcoming days.
April 21, 2014 at 7:47 am #181835In reply to: Unable to Register Users
@mercime
Participant@sarahs91 there have been changes to both BuddyPress and WordPress. Have you done some basic troubleshooting like changing theme to Twenty Fourteen/Thirteen? If it’s still an issue, have you deactivated plugins other than BuddyPress to check which is causing conflict in your registration?
April 21, 2014 at 7:24 am #181834In reply to: cant create new topic (and) reply
wolfied
ParticipantYes Palmdoc,
I’m waiting patiently for the buddypress staff to fix this problem. They are updating the buddypress but noone is touching this issue which is a very boring situation. I wonder when they will enable us to create a new topic WITHOUT joining the topic.
April 20, 2014 at 7:23 pm #181816In reply to: BuddyPress App
meg@info
ParticipantApril 20, 2014 at 6:52 pm #181814In reply to: Lost admin access after 2.o update
Mathieu Viet
Moderator -
AuthorSearch Results