Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 26 through 50 (of 22,677 total)
  • Author
    Search Results
  • #338381
    bbbt
    Participant

    Hello,

    We use bbpress, buddypress, and bbp-private-groups in a WordPress installation.
    In the Buddypress group settings, the group administrator can also create a forum.

    I am looking for a hook to add a specific group from bbp-private-groups to a group forum when creating the group forum:
    add_post_meta( $forum_id, ‘_private_group’, ‘group1’, false );.

    I tried the hook bbp_insert_forum.
    But at that point, the group and the forum are not yet linked.

    Does anyone have any idea which hook I can use?
    Thank you very much!

    #338379
    johanrosenberg
    Participant

    Hi, Im trying to install BuddyPress by expanding the zip to the Plugins folder. It doesnt seem to work. And when trying to install it by “installing” the plugin thru wordpress the ftp doesnt seem to work (installing on a XAMPP server on MacOs.) Help!

    #338351

    In reply to: Block users

    flamuren
    Participant

    I am a little scared of usin plugins that seem to not be updated. But have anyone tested this: https://wordpress.org/plugins/bp-toolkit/

    Or have other tips?

    Thanks in advanced for any tips on this topic 🙂

    #338264
    emaralive
    Moderator

    The caveat with plugins is that for a variety of reasons they might get abandoned at some point in time. Oddly or fortunately enough the author of the BuddyPress Restrict Messages plugin also created (seems like this one is a better fit for your stated requirement):

    BuddyPress Messaging Control

    However, the caveat of support for this plugin still applies.

    #338261
    petek61
    Participant

    I run a nonprofit civic group with fewer than 100 members. I want to create a member portal that will allow us to:

    • keep track of members and when their annual dues expire
    • allow members to interact online and via email
    • display a calendar of events
    • maintain flexible profiles that display some data for all members and some only for members of an admin group (for instance)
    • provide a social media type of experience: creating posts, participating in group chats, etc.
    • create forms that would submit via email to one or more pre-selected members
    • upload and share documents, images, etc.

    So basically, a simple member management system and social media site. I have looked at many free and paid member management systems. The free ones I’ve found are buggy and not well-supported, while the paid ones are far beyond our means.

    My question is, can I build such a beast using only WordPress and BuddyPress, along with a few plugins? Has anyone else done this, and if so, can you suggest a way to tackle it? I don’t want to waste time learning to use BuddyPress unless I know this is possible.

    Thanks for any tips and ideas.

    —Pete

    kflux
    Participant

    Hello everyone,

    I’m trying to create a simple custom theme to override the BuddyPress (Nouveau) registration page, but I’m consistently running into a White Screen of Death (WSOD). I’ve been troubleshooting for a while and would appreciate any help you can offer.

    My Goal:
    To create a custom theme that overrides register.php from the BP Nouveau template pack.

    My Environment:

    OS: Windows

    Local Development Tool: DevKinsta

    Plugin: BuddyPress (latest version)

    The Problem:
    When I activate my custom theme, I get a WSOD when trying to access the site (e.g., mysite.local/register/).

    Here is a summary of the troubleshooting steps I have already tried:

    Enabled WP_DEBUG: I have set WP_DEBUG, WP_DEBUG_LOG, and WP_DEBUG_DISPLAY to true in my wp-config.php. However, no errors are ever displayed on the screen or written to the debug.log file. The page is just completely blank.

    Checked for PHP Errors: I initially had parse errors (an extra } bracket) in my functions.php and register.php files. These have been found and corrected.

    Checked for BOM: I have verified with my code editor (VS Code) that all my theme files are saved with UTF-8 encoding and do not have a Byte Order Mark (BOM).

    Reset Permalinks: I have gone to Settings > Permalinks and clicked “Save Changes” multiple times to rebuild the rewrite rules.

    Theme Deactivation Test: When I rename my theme’s folder to force WordPress to deactivate it, I can access wp-admin again. This confirms the issue is within my theme’s code.

    File Permissions: I received a security warning that /wp-content/ was too writeable. I have reset the permissions for my entire site folder on my Windows machine to ensure they are not too permissive.

    My Theme Structure and Code:

    My theme is very simple.

    1. Directory Structure for the Override:
    wp-content/themes/kfluxtheme/buddypress/members/register.php
    (The register.php file is an exact, unmodified copy from wp-content/plugins/buddypress/bp-templates/bp-nouveau/buddypress/members/)

    /*
    Theme Name: K-Flux Theme
    Author: My Name
    Version: 1.0
    */
    <?php
    /**
     * Theme functions and definitions.
     */
    
    if ( ! function_exists( 'kfluxtheme_setup' ) ) {
    	/**
    	 * Basic theme setup.
    	 */
    	function kfluxtheme_setup() {
    		// Add support for BuddyPress (ESSENTIAL)
    		add_theme_support( 'buddypress' );
    
    		// Let WordPress manage the document title.
    		add_theme_support( 'title-tag' );
    
    		// Enable support for Post Thumbnails.
    		add_theme_support( 'post-thumbnails' );
    	}
    }
    add_action( 'after_setup_theme', 'kfluxtheme_setup' );
    
    /**
     * Enqueue scripts and styles.
     */
    function kfluxtheme_enqueue_scripts() {
    	wp_enqueue_style( 'kfluxtheme-style', get_stylesheet_uri(), array(), '1.0' );
    }
    add_action( 'wp_enqueue_scripts', 'kfluxtheme_enqueue_scripts' );
    

    Despite all these steps, the WSOD persists when my theme is active. Since WP_DEBUG is not showing any errors, I’m running out of ideas on how to debug this further.

    Has anyone encountered a similar issue with DevKinsta or have any suggestions for what I might be missing?

    Thanks in advance for any help.

    emaralive
    Moderator

    @thinlizzie,

    We created a new build (11.5.2), give this a try and let me know if this works for you.

    https://downloads.wordpress.org/plugin/buddypress.11.5.2.zip

    #338200
    emaralive
    Moderator

    Is item #2 a custom email that you created and if so, how did you create it, i.e., what steps did you take?

    FYI – Typically “mail logging” plugins log mail sent via wp_mail() (WordPress) and by default BuddyPress doesn’t use WordPress to send emails thus they won’t show in those logs.

    emaralive
    Moderator

    Not sure at this point, perhaps you could share more information about your configuration, e.g. WordPress version, PHP version, BP Template pack, etc. In the meantime, I’ll run this past the rest of the team.

    emaralive
    Moderator

    This appears to be related to ticket #9302, primary navigation in site editor fails to allow creation of a group. The ticket was submitted by the OP for this topic and has more information regarding the steps to reproduce.

    #338065
    emaralive
    Moderator

    When reviewing the history for this BP Add-on, this appears to be a bug that was first reported in April of 2024 in the WordPress support forum for this plugin. However, it appears that the only action taken was the submission of a GitHub issue #112 that acknowledges the bug and this issue has remained open since that time.

    Long story shorter, the fatal error is due to, what appears to be, missing parameters which is unforgiving with PHP version 8.0+. Rolling the PHP version back to 7.4.33 produces PHP errors as a warning and notice for the same file and line number. This bug appears to affect the posting of am image in an activity post; meaning the image is uploaded but does not get attached to the associated activity post. What does seem to work is uploading images from a user’s profile media area (where the image gallery is shown).

    All I can suggest at this point is that you deactivate the plugin until a remedy can be found and a new version is released.

    emaralive
    Moderator

    Most of the plugins you listed are in the WP Plugins directory. If you are utilizing the “Add Plugins” feature in the wp-admin area, you might want to try changing the criteria from “keyword” to “tag” (dropdown box to the right of the search box), e.g., with tag selected and then entering “google search” or “google custom search” (without the quotes) you will find:

    • WP Google Search
    • WordPress Google Search
    • RDP Google Custom Search
    • Server-Side Google Search

    For the “Search with Google” plugin, you can use “cse” or “custom search engine” or “google+search”. There appears to be inconsistencies (which is expected) in the way plugin developers tag their plugins, e.g., some developers have used “google search” as a tag and another had used “google” and “search” as separate tags.

    tofigh
    Participant

    @emaralive
    Sorry, I asked my question incompletely .
    What I meant was why are these plugins not in the WordPress repository?
    I can’t find these plugins in the WordPress plugins section?
    Thank you for your attention.
    MT

    #338053
    emaralive
    Moderator

    For the following items, there will either be URLs or Pages:

    • Activate
    • Activity
    • Groups
    • Members
    • Register

    The default when installing or upgrading to BuddyPress versions of 12 or greater is URLs. In order to change to Pages, the BP Classic add-on (plugin) should be installed and/or activated.

    Most likely, the reason for the -2 for the Activity Directory slug in URLs is that there is a Page with the title of “Activity” and a slug with a name of “activity” which should be visible within the WP Pages area. The indicated items are WP posts that will either have a post type of “buddypress” (indicates URLs) or a post type of “page” (indicating Pages). Meaning they should all be of same post type, not a mixture of both nor duplicates,

    Installing and/or activating the BP Classic add-on should revert all the previously indicated items to Pages and then you should be able to remove (trash) any duplicate Pages within the WP Pages area. You can the keep things as Pages or deactivate the BP Classic add-on to revert to the default of URLs.

    #338050
    kenjikato
    Participant

    If anyone comes to this post looking for help on using Divi with BuddyPress here’s the first thing that you need to do.

    1. Log in to your WordPress site.
    2. From the WordPress sidebar select “Divi > Theme Options”.
    3. Go to the “General” tab (which should be selected by default) found below the Divi Theme Options text.
    4. Click on the “Performance” sub-tab.
    5. Disable “Dynamic CSS”.

    This should fix the header and footer formatting issues that most people see when using Divi with BuddyPress.

    emaralive
    Moderator

    Your question is more in line as a support question for the Buddyx theme folks. If you haven’t already tried their support forum for the Buddyx theme.

    Furthermore, the first plugin you listed (WP Google Search) provides a search widget that you can add to any of the available widget areas provided by the Buddyx theme, the other plugins you listed may provide a widget as well. This approach might be easier than trying to add relevant code, e.g. a shortcode (if available) to a header file.

    #338036
    quandt
    Participant

    Update, in legacy view as to why when expanding your ‘Child groups’ each group is listed again.

    So not sure exactly, however, cause is related to the template stack not getting loaded when called via ajax. Not being an expert in buddypress nor wordpress, I’d guess that BP now requires something special for ajax style calls (or frankly maybe the code should be rewritten to remove ajax… in my mind that’d be preferable)

    This is the code line not getting executed when called via ajax… cuz your not in the groups directory… or wherever the groups directroy might be on your verson of BB

    "public/class-hgbp.php" 
        /* Changes to the groups directory view. **********************************/
        /** 
         * Add our templates to BuddyPress' template stack. 
         *
         * @since    1.0.0
         */ 
        public function add_template_stack( $templates ) {
            if ( bp_is_current_component( 'groups' ) ) {
                $templates[] = plugin_dir_path( __FILE__ ) . 'views/templates';
            }
            return $templates;
        }

    Simply executing the template stack add, gets you much better results, but is the right answer, doubt it?

    quandt
    Participant

    Anyone else having issues with nouveau and creating new groups?

    wp version: 6.8.2
    BB version: 14.3.4

    From the frontend go create a group step 1 (enter name/details), press next

    In legacy I get to step #2, and other steps just fine

    In nouveau, I get a site crash

    In both cases, a group is created but of course I never got to steps past #1

    Here’s the php errors.log

    [Thu Aug 28 20:57:57.144448 2025] [proxy_fcgi:error] [pid 3199895:tid 3199921] [client 47.146.236.56:57038] AH01071: Got error 'PHP message: PHP Fatal error:  Uncaught Error: Call to a member function get_secondary() on null in /srv/buddypress/wordpress/wp-content/plugins/buddypress/bp-templates/bp-nouveau/includes/template-tags.php:802\nStack trace:\n#0 /srv/buddypress/wordpress/wp-content/plugins/buddypress/bp-templates/bp-nouveau/buddypress/groups/single/parts/item-nav.php(12): bp_nouveau_has_nav()\n#1 /srv/buddypress/wordpress/wp-includes/template.php(812): require('...')\n#2 /srv/buddypress/wordpress/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(225): load_template()\n#3 /srv/buddypress/wordpress/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php(67): bp_locate_template()\n#4 /srv/buddypress/wordpress/wp-content/plugins/buddypress/bp-templates/bp-nouveau/includes/functions.php(1612): bp_get_template_part()\n#5 /srv/buddypress/wordpress/wp-includes/class-wp-block.php(586): bp_nouveau_render_primary_nav_block()\n#6 /srv/buddypress/wordpress/wp-includes/blocks.php(2359): WP_Block->render()\n#7 /...', referer:

    https://fam.actlocalfest.org/groups/create/step/group-details/

    #338033
    quandt
    Participant

    Great plugin.

    But yup, needs some attention to update to latest… logically works though, just visuals seem to be programmatic.

    wordpress: 6.8.2
    buddypress: 14.3.4

    legacy:
    almost works 100%, groups directory view shows a caret for groups, unfortunately when you expand the caret (groups are not getting filtered for the child groups, ie the children are simply the list of all groups again)

    nouveau:
    ehh, no tree view, but the include top-level groups only kind of functions, but again don’t think there’s any code to support this under nouveau

    I hope to do some debugging and work on this plugin, wish me luck.

    emaralive
    Moderator

    The login page shown in the 1st screenshot is due to having the Community Visibility option set to “Members Only” (Private Community) within BuddyPress options. This option was introduced in version 12.0.0 and there appears to be some situations in which the default WordPress login page appears as opposed to the intended “Private Community” login page. Nevertheless, the “Private Community” login page can be disabled by utilizing the bp_view_no_access_redirect_to_login_screen filter hook and you will want your callback function to return a value of true. The following link is the line of code where the filter hook resides for v14.3.4:

    bp_view_no_access_redirect_to_login_screen

    The registration page shown in the 2nd screenshot is actually the BuddyPress registration page. Why it looks different is because the Buddyx theme is utilizing CSS rules to alter/change the appearance. You should contact Wbcom Designs support regarding the restoration of the default appearance.

    #337971
    emaralive
    Moderator

    The snippet does what it is coded to do, therefore, either the snippet is not being invoked or there is something else (possibly a plugin, theme or other custom code) that is counteracting the snippet.

    I’m not familiar with the “username only” plugin, is this plugin available via the WordPress plugins directory? I’m asking because this plugin or some other external factor (a different plugin or theme) might be disrupting the normal flow of events.

    The snippet relies on the bp_get_title_parts filter hook which relies on the bp_modify_page_title() function to be invoked by the wp_title filter hook.

    You can try hooking the snippet to the wp_title filter hook to see if that makes any difference, i.e., change:

    From:

    
    add_filter( 'bp_get_title_parts', 'yz_change_buddypress_browser_tab_title', 999 );
    

    To:

    
    add_filter( 'wp_title', 'yz_change_buddypress_browser_tab_title', 999 );
    
    tofigh
    Participant

    Hi
    look at the these pictures and Their addresses

    this page sometimes appears when the user logout the website :
    https://drive.google.com/uc?export=download&id=13g-Cpfwjytvc145CNHnJoh1rhmkyRoVX
    and this is Image address above : http://localhost/wordpress/members/user-name/

    Even when the user clicks the register button in the image above, the registration page appears.
    registration page pictures :
    https://drive.google.com/uc?export=download&id=1Mud5JNDxA7uivFxwdSG8iTH0xrk5Lyvc
    and this is Image address registration page : http://localhost/wordpress/user-name/

    at the top right of the registration page is a login button , when the user clicks on login button the wordpress login page appears But I want the login page you saw in the first image to load.

    Thank you in advance for your help.

    Best regards,

    MT

    emaralive
    Moderator

    BuddyPress utilizes the WordPress login page by default. There are plugins that will alter or replace the standard WordPress login page.

    #337895

    In reply to: Field Visibility

    emaralive
    Moderator

    I stated that the visibility for WordPress Fields are “currently” not user selectable. Why this decision was made was unknown to me, until recently, and appears to be along the same lines of why the “Requirements” metabox doesn’t appear for the WordPress Fields, as well.

    Given this conversation, I looked for a possible reason that might uncover a decision to not include such capabilities and found that ticket #8487 (Add visibility and required controls to the WordPress profile fields) provides the history behind why the decision was made not to include the capabilities (visibility and requirements) and why these capabilities have yet to be incorporated (no one has provided a patch).

    #337894

    In reply to: Field Visibility

    Ricsca2
    Participant

    Why can’t the WordPress profile fields be selected by the user?
    For example, the city field is useful for the admin, so it’s mandatory, but the user doesn’t want to make it public.
    To do this, you need to create a custom city field not linked to the user’s WordPress profile, but this would then be a duplicate field.

Viewing 25 results - 26 through 50 (of 22,677 total)
Skip to toolbar