Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 6,251 through 6,275 (of 32,678 total)
  • Author
    Search Results
  • #255174
    r-a-y
    Keymaster

    I’ve duplicated the issue for plugins using code like this:

    add_action( 'bp_include', function() {
            if ( class_exists( 'BP_Group_Extension' ) ) {
                    class My_Group_Extension extends BP_Group_Extension {
                    }
    
                    bp_register_group_extension( 'My_Group_Extension' );
            }
    }, 99 );

    The BuddyPress Cover Photo plugin uses something similar to the above.

    I’ve opened a ticket with a fix to this specific problem:
    https://buddypress.trac.wordpress.org/ticket/7140

    #255166
    SteveMann
    Participant

    I am a newbie here; I have never used WordPress before. I am trying to move away from PHPBB because it’s just too old-fashioned, as well as difficult to maintain.

    So, I install WordPress on my GoDaddy hosting account, then the BuddyPress plug-in from the WordPress dashboard. I also created the Registration and Activation pages from the WordPress ‘Pages’ tab on the dashboard.

    WordPress 4.5.3
    BuddyPress 2.6.0

    So, now what? The WordPress page looks exactly the same as before installing the BuddyPress plugin.

    From the BuddyPress Settings / Pages if I click on “view” for the Registration and Activation pages, I just see the home page.

    The installation did create the .htaccess file in the root of the blog.

    So, what did I miss? Is BuddyPress even the solution I am looking for? (To replace my PHPBB forums).

    Thanks

    #255142
    shoreshotweb
    Participant

    I have a brand new installation of the latest version of WP. Using the default theme, deactivated Hello Dolly and the other default plugins. When I try to Activate BP XProfile WP User Sync, I get the error message:
    Fatal error: Call to undefined function xprofile_insert_field() in /[path]/[to]/[wordpress]/wp-content/plugins/bp-xprofile-wp-user-sync/bp-xprofile-wp-user-sync.php on line 831.

    (Don’t take the square brackets in the path as literal folder names.)

    How do I resolve this error?

    vahid mohammadi
    Participant

    Hi
    Every time I enable extended profiles in buddypress components, after some days, I see that my database space increases and my site’s speed slows down and it wouldn’t even open! but after disabling it, the problem is solved.

    my site is a wordpress network

    #255134
    Slava Abakumov
    Moderator

    It’s a duplication of this topic:

    No access to single activity item on from after BP2.6 upgrade

    To roll back: download the previous version here. Delete your current version of BuddyPress and upload the older one.

    #255127
    Slava Abakumov
    Moderator

    @lagodny

    Put this code in functions.php of your (child) theme.

    function lagodny_document_title_separator_pipe( $separator ) {
        return '|';
    }
    add_filter('document_title_separator', 'lagodny_document_title_separator_pipe');

    I assume that you are on the WordPress 4.4+.

    #255113
    kaab321
    Participant

    This helped me A LOT! Solved my error. Got it from:

    https://wordpress.org/support/topic/fatal-error-with-buddypress-26?replies=3#post-8563337

    Open Quote:

    If you’re like me and have buddypress groups turned off, this will produce the error shown. I fixed by adding this to

    /wp-content/plugins/buddypress/bp-groups/classes/class-bp-group-extension.php

    change:

    $group_id = bp_get_current_group_id();

    to:

    $group_id = (bp_is_active('groups') ? bp_get_current_group_id() : '');

    and change:

    if ( empty( $group_id ) && bp_get_new_group_id() ) {
        $group_id = bp_get_new_group_id();
    }

    to:

    if(bp_is_active('groups')) {
        if ( empty( $group_id ) && bp_get_new_group_id() ) {
            $group_id = bp_get_new_group_id();
        }
    }

    IMO, they should have tested this before pushing out an update. Hopefully they figure things out.

    Close quote

    wangup
    Participant

    Hi!

    I am trying to figure out a way to only show status updates on the activity stream.

    I have seen code on here at https://codex.buddypress.org/developer/loops-reference/the-activity-stream-loop/, but I just don’t know where to put it in terms of the file and what line to put it in.

    And it would be in the child theme as well, right?

    Sorry for the 2 questions,
    just a newbie with wordpress to be honest.

    Appreciate the help!

    WordPress Version: 4.5.3
    BuddyPress Version: 2.6.0
    Link to Site: BuildCup.com

    #255106
    ooooooooo
    Participant

    Mate!
    It was so easy.
    Thanks!

    For all lighttpd users!

    You can delete all stuff I put into my lighttpd conf. Remove all that junk code and put only:
    server.error-handler-404 = “/index.php”
    thats all folks, you don’t need any special mod revirte rules!

    More info:

    Setting up a WordPress Blog on Lighttpd with Pretty URLs

    One more time thanx @danbp it was in codex page under point 1.2

    Have great evening and happy friday!
    Regards
    Krang

    #255101
    gepstein
    Participant

    Hello,

    Upon updating my site (https://community.acue.org/) to WP 4.5.3 and BuddyPress 2.6.0, the user menu broke (must be logged in to see). The entries for the menu under Dashboard > Appearance > Menus are all still in tact (Profile, Notifications, Settings, Log Out), but the menu itself only shows two options (m, Log Out). The m item points to https://community.acue.org/m, which throws a 404 upon click.

    I’ve determined that it’s the plugin/WordPress incompatibility due to the timing of the issue with my updates as well as comparing to a staging site with different versions. I’ve cleared my cache multiple times and republished the menu items to force the menu to re-pull them from the database. No luck.

    Any insights into this issue are greatly appreciated. Please let me know if you require any further information and thank you for your time.

    #255093
    syborg
    Participant

    I posted a topic on the Buddypress Cover Photo support forum, on wordpress.org. (Same authors as KLEO theme and support forum so easier to access). Bye !

    #255087
    r-a-y
    Keymaster

    Looks like the code example doesn’t work in your theme’s functions.php unless you change the hook from 'bp_groups_register_group_types' to 'bp_init'.

    However, the code example from the codex works as-is if used in wp-content/plugins/bp-custom.php.

    Going to file a bug report. Thanks for testing, @d8vjork!

    Update: Here’s the ticket – https://buddypress.trac.wordpress.org/ticket/7138

    #255081
    Slava Abakumov
    Moderator

    Confirming, that @destac solution works ok.
    First appeared in a Yoast/wordpress-seo repository open issue.

    LuciaRed
    Participant

    Hello!
    I just read everything about the same fatal error that was resolved for a multisite but in my case there is just a normal wordpress install in a subdirectory of my server.

    My Installation is as follows:
    WP version: 4.5.3
    Web server: Apache (Linux serv01.esm7.siteground.biz 64-bit #13 SMP Tue Mar 15 13:23:00 EET 2016)
    ABSPATH: /home/csrhella/public_html/csrh/community/
    WP_CONTENT_DIR: /home/csrhella/public_html/csrh/community/wp-content
    WP_PLUGIN_DIR: /home/csrhella/public_html/csrh/community/wp-content/plugins
    Table prefix: red_acdc_
    Peak memory usage: 43 MB
    Current memory usage: 43 MB
    Memory limit: 256M
    PHP version: 5.4.45 – show PHP information (phpinfo)
    MySQL version: 5.6.28
    Curl version: 7.30.0 / SSL: OpenSSL/1.0.2h / libz: 1.2.3
    OpenSSL version: OpenSSL 1.0.1p 9 Jul 2015
    MCrypt: Yes
    I have WP_DEBUG=TRUE
    The Theme is a premium one: “THRIVE”
    and my installed plugins are as in the image.

    My problem is that when I install the Buddypress plugin I get the following message:

    Notice: get_currentuserinfo is deprecated since version 4.5! Use wp_get_current_user() instead. in /home/csrhella/public_html/csrh/community/wp-includes/functions.php on line 3658

    Fatal error: Call to undefined function bp_get_current_group_id() in /home/csrhella/public_html/csrh/community/wp-content/plugins/buddypress/bp-groups/classes/class-bp-group-extension.php on line 487

    PLEASE HELP!

    #255065
    Earl_D
    Participant

    Well not exactly sure about what happened but between the update to BP2.6 and tweaking my URL setting after reading this

    BP with SSL do not send registration


    My registration seems to be working again. I had SSL installed on the site after I setup my WP/BP install. Initially changed the site and WordPress URLs in the general settings to remove https from the URL and add www. Before domain. So now URLs looked like this. Http://wwww.mydomain.com Several test registrations worked as expected immediately after that was done. Since I want to try to keep site secure I went back to setting and put the https back in the URL and keep the www so now URLs look like this Https://www.mydomain.com All test registrations still work. Will get a few more random tests in but it looks like the problem is solved. BTW I am using lets encrypt

    maganiza
    Participant

    Hi Guys

    I have been having this problem for a week now. I even posted the problem on this forum but never got a single response. I also checked the other posts but those old 2015 solutions are not working for me.

    My problem is I have a site with latest wordpress and buddypress, when new users register they are not receiving the activation emails. Nothing in the inbox and nothing in the spam/junk folders. I actually have to activate in my user admin panel/list manually. Within the users list I can see a reflection which shows that the activation mail has been sent.

    All hell broke loose last week but before that the site has been sending activation email with wordpress@mydomain.co.za without any issues. I have tried wp-mail-smtp, mail smtp but nothing works. I can send test mails successfully with all these plugins.

    I have tried the hosting company but they are saying the mail hosting server is fine. They are saying there is a problem with either wordpress or buddypress. The email log is below. Please help

    2016-06-20 18:57:46 1bF2WA-000MOp-3X <= noreply@mydomain.co.za H=chs9.ampledns.com (wingrow.co.za) [197.189.252.226]:48386 I=[197.189.252.226]:587 P=esmtpsa X=TLSv1:ECDHE-RSA-AES256-SHA:256 CV=no A=dovecot_login:noreply@mydomain.co.za S=739 id=1263c7ca6911ab6e37dff8bf0ff1ca41@mydomain.co.za T=”[WinGrow] New User Registration” from noreply@mydomain.co.za for admin@mydomain.co.za
    2016-06-20 18:57:46 1bF2WA-000MOp-3X => admin admin@mydomain.co.za F=noreply@mydomain.co.za R=virtual_user T=virtual_userdelivery S=856

    #255054

    In reply to: New Navigation API

    danbp
    Participant

    For the moment, it will continue to work (more or less)

    Have you read this on 2.6 About page?
    https://buddypress.trac.wordpress.org/changeset/10745

    …& as example, check comments in this file:
    https://buddypress.trac.wordpress.org/browser/trunk/src/bp-core/bp-core-buddybar.php?rev=10745

    Kookidooki
    Participant

    Hello Paul,

    I’m using theme Kleo, BP Group Hierarchy, some other plugins and installed new Buddypress with all plugins switched off.

    I’ve checked this: https://buddypress.trac.wordpress.org/changeset/10745
    and see you did a huge overhaul to the Group Navigators..

    Paul Wong-Gibbs
    Keymaster

    I’ve created a bug report for this issue so we can improve it in future

    https://buddypress.trac.wordpress.org/ticket/7137

    sharmavishal
    Participant
    #255020
    IdleWanderer
    Participant

    I am fairly certain I already answered this.. Weird..

    Anyway, I managed to get in eventually. It seems the wrong password was saved in my browser. I got a new from WordPress and I finally got in. The ticket is in now, so let’s see if they do anything about it.

    #255018
    danbp
    Participant

    Добрый день @valery-kondakoff,

    no it’s not a regression ! Just a question of delay after BP’s update. Translations are made by volonteers, which are humans, not programmed machines. You have to wait that the translation is completed.

    Or you can download the trunk version, which is already completed to 100%.
    https://translate.wordpress.org/projects/wp-plugins/buddypress/dev/ru/default

    At the page bottom you have a download button and a file type selector. Select po and mo format and rename both files to buddypress-ru_RU

    Jason75
    Participant

    Hello – I have the latest WordPress version installed along with the latest Woffice theme update. However when I update buddypress to the latest version 2.6.0 the whole site breaks and this error appears:

    Fatal error: Call to undefined function bp_get_current_group_id() in /home/.../public_html/.../wp-content/plugins/buddypress/bp-groups/classes/class-bp-group-extension.php on line 484

    Any thoughts?
    I’am able to get the site working again, when I restore to a saved backup…
    Thanks

    #255014
    sharmavishal
    Participant
    #254998

    In reply to: Cannot create groups

    r-a-y
    Keymaster

    Turn off WP_DEBUG in wp-config.php and you should be able to continue using the “Re-order Group Tabs” plugin.

    As for BP Group Hierarchy, that probably requires an update to function properly.

    BuddyPress 2.5.3 can be found here:
    https://downloads.wordpress.org/plugin/buddypress.2.5.3.zip

Viewing 25 results - 6,251 through 6,275 (of 32,678 total)
Skip to toolbar