Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 16,976 through 17,000 (of 69,106 total)
  • Author
    Search Results
  • #181967


    @palmdoc
    , @benny390

    You 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 );’

    #181966
    palmdoc
    Participant

    I 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 feel

    Help anyone?

    BackpackersUnion
    Participant

    VICTORY!!!

    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.

    #181952
    stwc
    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.

    #181950
    OrlandoDS
    Participant

    Hey,

    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_signups

    Solution

    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 users

    system

    • 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::get

    To 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…

    #181945

    In reply to: Renaming Components

    SK
    Participant

    Wow… 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.

    #181943
    danbp
    Participant

    ola !
    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.

    elaborate
    Participant

    I 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 action attribute 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.

    #181927
    Mathieu Viet
    Moderator

    @dionnewilliams

    1. 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 ?

    Ircsome
    Participant

    Have 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.”.

    #181913
    bp-help
    Participant

    @natleg22
    The correct approach to this is to use a language file. Please review:

    Customizing Labels, Messages, and URLs

    #181909
    aces
    Participant

    @mr-bronze

    You 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 )?

    #181907
    Mr Bronze
    Participant

    please i need one that can remove buddypress responsive feature from my themes. how do i download it

    #181896
    Ganesh Paygude
    Participant

    please anyone can help me buddypress is not working with my directory theme?

    Anonymous 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.

    sharmavishal
    Participant

    This plugin is also interesting BuddyPress Activity Stream Ajax Notifier

    sharmavishal
    Participant

    use this plugin does an auto update of activity RS Buddypress Activity Refresh works fine on BP 1.9 and 2.0 as well.

    #181882
    jeffsun22
    Participant

    I 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

    r-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.

    #181874
    r-a-y
    Keymaster

    Thanks 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.

    #181856
    r-a-y
    Keymaster

    Thanks for the report, @rewindcaz.

    A ticket was created and addressed here:
    https://buddypress.trac.wordpress.org/ticket/5571

    This will be added for v2.0.1 in the upcoming days.

    #181835
    @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?

    #181834
    wolfied
    Participant

    Yes 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.

    #181816

    In reply to: BuddyPress App

    meg@info
    Participant
    #181814
    Mathieu Viet
    Moderator

    hello @megainfo,

    You’re right. I think the problem you described in #5569 is a side effect of #5553.

Viewing 25 results - 16,976 through 17,000 (of 69,106 total)
Skip to toolbar