Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'questions'

Viewing 25 results - 51 through 75 (of 2,990 total)
  • Author
    Search Results
  • #327036
    fawp
    Participant

    EDIT: I checked your page again and saw that your registration fields now seem to be back on the page?

    Did you find out what the problem was?
    __________________________________________________________
    @rightanglecreative90 ok, I would start asking several questions, many of which are included here

    When Asking for Support

    as Mathieu suggested.

    Are you able to provide answers to those questions (e.g. not only WP and BP versions but also, did you upgrade from prior versions and which versions were they, do you have any other plugins, etc.) ?

    #326482
    Anonymous User
    Inactive

    You’re welcome @dimensionmedia. No worries I understood your point 😁. I won’t talk more about this subject here and focus on BuddyPress instead. You made a very good point about the WordPress Plugins directory:

    Ok, so if the WordPress repo is our advantage – then how do we use that advantage? how do we stand out (from member sites and other social plugins)? how do we feature BB plugins that are trust worthy and maintainable that avoid people having to dive into thousands of plugins in this “important advantage”? Good questions, looking forward to hearing more from people about them.

    You’re right, I believe we can try to help Users with this kind of shortcuts:

    BP Addons

    But we’d need more contributors to test/review BuddyPress plugins, which is maybe a too big dream I’m doing, I agree 😇

    What I was meaning, was: It’s possible to transform optional components into plugins and preserve the current user experience and only install what they need, thanks to the WordPress.org API.

    Another advantage of being into WordPress.org plugins directory are updates (semi or fully automatic). The Plugin team is also doing a great job to eventually “suspend” plugins in case of security issues or wrong behaviors.

    #326481
    David Bisset
    Participant

    Thanks for the reply @imath. I was simply implying to look and see what they are doing – SOME of what they are doing I think fits into general interest (look at how they deal with media). They are doing research and it would be foolish to ignore some parts, even if it in the end it leads to ways we can mold it more toward BuddyPress thinking.

    Sometimes you can lead my example, other times you can lead by taking something and making it better in some way.

    There’s a balance with addons – too many and a user can get overwhelmed with choices and research but overall I lean toward simple as possible. Perhaps it’s something that is simple for a niche purpuse that uses BuddyPress “under the hood”. It’s not a great example but thinking about “how can I spin up a special kind of to-do app that I can add my friends and share and collab with, while still owning my data, control, etc”. Thought of this today while my kid was showing me what she does in Notion today.

    Ok, so if the WordPress repo is our advantage – then how do we use that advantage? how do we stand out (from member sites and other social plugins)? how do we feature BB plugins that are trust worthy and maintainable that avoid people having to dive into thousands of plugins in this “important advantage”? Good questions, looking forward to hearing more from people about them.

    I don’t believe BuddyPress is missing THAT many features. Part of this is also changing with the times. Which means maybe thinking a little differently – even if it’s me thinking differently from how I look at BuddyPress when I started with it so many years ago. ☮️

    #326448
    user4forum
    Participant

    Just my opinion and just an AI translation:

    Where are the sticking points?

    BP core:
    After 9 months with BP and several free BP plugins, there are still a lot of questions. Group handling and invitation are too complex and partly illogical. (Example: Group Owner is allowed to remove himself and then the administrator has to ‘intervene’). Furthermore, internal e-mail, where you have to select users based on their usernames (@…). Also not visually appealing and sometimes rather confusing in use. Other BP features (sorting/displaying members within groups!) that don’t work even on a WP default theme (Twenty Twenty-Two). Just annoying!

    In principle, the core plugin provides too little (in terms of functionality). Best example: Blogging and media. Something that defines WP at its core. In addition to two larger commercial “BP providers” and some ancient plugins in the WP repo, the selection and comparability is difficult if you want to use them for specific rights and groups. I understand that you want to offer an open and expandable system, but something “more” would be desirable or necessary.

    BP mailing list:
    Hardly any actions, but many (trivial) questions and no answers. On the other hand, technically interesting answers are often 10 years or more in the past (and unfortunately still up-to-date in principle), but where there is no attempt to test them in a current BP version.

    ToDo (Plugins into Core):
    Directory: Very important! Of course you can use “BP Custom Fields” but there’s no option to do a filter search, based on different fields to exclude displaying other profiles – or I just can’t find the options. Tried “BP Profile Search”

    Why not just embed a few components “more tightly” into the core, why not simply take over the source code of others who simply “copy” BP themselves without returning anything to the community? There was an interesting discussion about this recently on another platform site.

    Wishes:
    – Rights management for pages/posts or for individual BP components (either private/public or at user level) – e.g. “User Access Manager”
    – E-mail communication between each other without having to use the real e-mail address and being able to leave the borders of BP – e.g. “BP Reply By Email”

    It’s a pity, but currently STILL not enough for uncomplicated use and sometimes stopped in development. In addition, commercial providers who copy BP as well as other WP Social Media Group solutions that are more complete and appear more self-contained.

    To name a few plugins that could be partially included:

    Theme: BuddyX (free)
    BP 11 (dev) &
    BP Attachments (dev) (what does it do? Substitution of BuddyDrive?)
    – bbPress (smarter integration)
    – BP Profile Search (no filter options found)
    – BP Reply By Email (should be core as option)
    – BuddyDrive (should be Core)
    – Buddpress Docs
    – BuddyPress Xprofile Custom Field Types (should be core)
    – BuddyPress Xprofile Conditional Fields (should be core)
    – Rendez Vous (should be core as option)
    – “BuddyPress XY Blog” (should be core)
    – “BuddyPress XY Search”

    #326371
    restorm
    Participant

    Many thanks for the quick response. I’m not a developer so please excuse two clueless questions:
    1) Do these snippets work on their own, or does your User Roles plugin need to be activated?
    2) Do I insert both of the above snippets in the child theme, like this?
    add_filter( ‘bp_get_group_join_button’, ‘venutius_restrict_group_join’, 10, 2 );

    function venutius_restrict_group_join( $button, $group ) {
    global $bp;
    if ( current_user_can( ‘manage_options’ ) || $group->is_member ) {
    return $button;
    }

    $membership_total = count( BP_Groups_Member::get_membership_ids_for_user( $bp->loggedin_user->id ) );

    if ( $membership_total >= 1 ) {
    return false;
    }

    return $button;
    }
    add_action( ‘groups_join_group’, ‘venutius_group_join_filter’, 10, 2 );

    function venutius_group_join_filter( $group_id, $user_id ) {
    global $bp;

    if ( current_user_can( ‘manage_options’ ) ) {
    return;
    }

    $membership_total = count( BP_Groups_Member::get_membership_ids_for_user( $user_id ) );

    if ( $membership_total >= 4 ) {
    groups_leave_group( $group_id, $user_id )
    }

    }

    kealarafana2020
    Participant

    Hi I am using bbpress for forums protected by memberpress rules.
    Is that sufficient security for the forum contents?
    If I wanted to switch to BP instead of using bbpress for groups,
    would that cause major headaches if I am not yet going to use BP’s full features?
    Is that more integrated with memberpress, and would i need to use a theme oriented towards
    BP.

    I know its a lot of questions in one thread, but it all really relates to security firsy and what challenges may arise if I choose to instal BP

    #326086
    DragoWeb
    Participant
    #326053
    shanebp
    Moderator

    Some names are the same but the underlying code is different.
    You need to ask BuddyBoss – they have a facebook page for questions.

    formlos
    Participant

    According to https://codex.buddypress.org/translations/ we should store the bbpress-de_DE.mo and bbpress-de_DE.po under /wp-content/languages/buddypress/, which we did. But these language files are being ignored.

    We are using buddypress in de_DE and made some tweaks to the wording (we replaced the string “group” with “cluster” in German).

    Buddypress uses the files stored under /wp-content/languages/plugins/ and ignores the aforementioned folder.

    What we already tried:

    • deleting the buddypress-de_DE files in /wp-content/languages/plugins/: this partially works. Buddypress then uses our files stored in /wp-content/languages/buddypress/. But somehow wordpress (or buddypress?) regenerates the files in /wp-content/languages/plugins/ after some hours. And then these “new” translations are used again of course. (Our own translations in /wp-content/languages/buddypress/ stay untouched by wordpress/buddypress)
    • Created a folder /wp-content/languages/plugins/buddypress and copied our files over to this folder. But to no avail – these files are being ignored completely (even if we delete the buddypress files in /wp-content/languages/plugins/).
    • Copied our files directly to /wp-content/languages/plugins/: this works until these files get overwritten after a couple of hours

    Specs:

    • WordPress 6.0.1
    • Buddypress 10.4.0
    • Custom template, which we’ve written on our own
      Multisite

    Questions:

    • What are we missing?
    • Is there a way to stop wordpress/buddypress regenerating the files living directly in /wp-content/languages/plugins/?
    • What is the right place to store our translations?
    #325860
    heliocorrei
    Participant

    Hello guys.

    I need to create a social network on BuddyPress and I have some questions.
    I hope you can help me.

    1 – In BuddyPress do we configure a database when we start in WordPress?
    If so, do I do this directly with the platform where I host my site or with WordPress?

    2 – In BuddyPress can I put that ‘social access’, that is, the person uses a Facebook or Google login that they already have?

    3 – I came to see that we were able to customize the person’s registration on BuddyPress. This information goes straight to the database, right?

    4 – I saw that it is possible to create groups, my question is if there is a possibility of being private groups.

    5 – With the registration information, is it possible to do email marketing and invite others by email and by cell phone?

    Thank you all for your cooperation and I look forward to your responses.

    Helio Correia

    #325810
    wpsupglpk1
    Participant

    Our web site is at https://www.gleanr.com.au/. Its a member site and we use Ultimate member plugin into Buddypress member area and its a WordPress site. We are having issues with people registering into the site with what appear to be bogus email addresses. We have an email activation process that follows new member registration. We use the google recaptcha tool which sometimes has the choice from images in boxes come up and at other times is only a tick box (I am not a robot). Its very random and seems out of our control.
    It seems that some people registering with bogus email addresses can activate their account (which is weird) and they have been creating spam groups in our member area. So in summary, my questions are:

    1. Are there any plugins or obvious processes we are missing to stop the bogus registrations
    2. Are there plugins or processes that can prevent bogus groups being created and at the very least provide an easy pathway for the site administrator to be involved in group approval process and/or be alerted whenever a new group is created.

    Thanks

    #325396
    kleb123
    Participant

    I have some questions;

    – For the profile page, I would like to give members the option to edit username/email/password/picture and that’s it (in a custom template). So none of the other things like export data or email notifications.

    – Is it possible that when someone visits another members profile page they see their own profile page (or another given page)?

    #324754
    kekriszta
    Participant

    Hi there,
    I have Rehub theme+WCFM.
    I have recently installed Buddy Press as I need it for a new feature on my site.
    All good so far…I have 2 questions:
    1: Creating a vendor (store vendor) account, then clicking on the profile icon at the header> manage your store, the WCFM panel opens, which is great.
    BUT also the 4 Buddy Press menu options show above the WCFM panel (profile, listing manager,invitations, created by)
    It is really confusing, as if I click on the ‘listing manager’ menu on Bpress then the WCFM panel opens in a funny way.
    Is it possible to remove the listing manager option from BPress?
    Not sure if it makes any sense, I can send you screenshots just let me know your email address.

    2: how can I remove the ‘newbie’ sign from members pages?

    Thx

    WP version: 5.9.3
    BPress version: 10.3.0
    site: https://manofestum.com/manostaging/en/ (it’s the staging version )

    #324557
    lkhlc
    Participant

    Howdy and Happy mom’s day to the ah… moms…
    Hopefully there is someone in this community who knows the answer to these questions.

    1: How to list all most recent activity with the full body, not just truncataed to make a title.
    2: How to get the original post ID number
    3: How to get the original post author ID?

    I’ve been using this:

    function getFeed($feed_url){
        $content = file_get_contents($feed_url);
        $x = new SimpleXMLElement($content);
    
        for ($i=0; $i<=100; $i++){
            $entry = $x->channel->item[$i];
    if ($entry){
                $link = $entry->link;
                $page_id = $entry->ID;
                $user = bp_get_activity_id();
                $title = $entry->title;
    	    $object = $entry->object;
    	    $content = $entry->activity_comment;
    	    $tags = $entry->tag;
    if ($title){
    
    echo $user.",".$page_id.",".$title.",".$link.",".$content.",".$tags."<br>\n";
        }
        }
        }
    }
    
    getFeed($feed_url);

    user, content tags page id do not generate anything only title and link work
    and the title is truncated from the body (need the body) and the URL is not
    the permalink its the straight /p/ number treatment.

    4: How do I get real permalinks to work in the activity stream?

    Yeah I know its too much but I hope someone has already solved this.

    Thanks for reading!

    #324192
    carasse64
    Participant

    Hello

    I use the BuddyX theme. I have installed a BBpress forum.

    I want to force the users to ask questions in the forum and to prevent them from posting comments on the newsfeed page.

    In the buddypress settings, i have disabled the users’s ability to post comments.

    Now, I would like to propose users so create new forum topics from the top newsfeed window : https://www.awesomescreenshot.com/image/25425875?key=c016bab1832426963f4c9b9655c974ee

    Instead of the text “Quoi de neuf (french version ;)), I would like a text like : “Ask a new question by clicking here / here = a link to https://espace-organisateur.fr/forums/#new-post
    Of course, the user would not have any other choice than clicking on the link. He could not write anything else in the window.

    Also, I would like to do the same in the activity tabs of the members pages profile.

    Do you think this is possible ?

    Thanks a lot for your help.

    Fabien

    #324109

    In reply to: topic marked as spam

    waris Khan
    Participant

    You can not use/mention promotional stuff in your posts rather you can ask or answer someone’s questions. Promotional stuff can be like promoting your website, social account, or something else.

    havealookhere
    Participant

    Hi,

    I did not want to show some things in the activity stream. After searching a long time I did find a snippet what did work.

    function bp_activity_dont_save($activity_object)
    	{
    	$exclude = array(
         'bp_doc_created',
    	 'bp_doc_edited',
    	 'bp_doc_comment',
    	'bbp_topic_create', //bbpress
        'bbp_reply_create', //bbpress
    	'created_group',
    	 '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', 'bp_activity_dont_save', 10, 1);

    Is this the best way to do this? Or do you have a better sollution?
    I cannot find the right term to exclude when someone updates in a group, does someone know that one?

    Then, I want to get rid off the options in the drop down menu on the activity stream. I did find some code what almost did the trick.

    `add_filter( ‘bp_get_activity_show_filters_options’, function( $filters ) {
    unset( $filters[‘bp_doc_created’] );
    unset( $filters[‘bp_doc_edited’] );
    unset( $filters[‘bp_doc_comment’] );
    unset( $filters[‘bbp_topic_create’] );
    unset( $filters[‘bbp_reply_create’] );
    unset( $filters[‘created_group’] );
    unset( $filters[‘joined_group’] );
    unset( $filters[‘updated_group’] );
    return $filters;
    } );

    I think there should be a better way, so I hope someone can advice me with this.

    Now i have a strange thing. The Forum topics and replies are not visible anymore in the dropdown so thats good.

    The group creation and the group joining are not visible anymore so thats good.

    I cannot find the group update term. Does someone know what Term i need?

    And, the bp docs are still visible. This is strange because they are not showing anymore in the activity feed, but i cannot get them out of the dropdown menu.

    Can someone help me to achieve this? Or give me a better sollution??

    Sorry for any bad English

    Thanks in advantage

    diorosaecrucis
    Participant

    Good day all!

    I have a request to use a third party hosted membership database with specific group levels required to use the BuddyPress/Youzify platform we have created.

    Instead of sending an invitation email, we would like to “automagically” register and create the profiles of these users with their information AND credentials from the membership database.

    Is this possible? If so, please provide a basic layout of the steps. I can get the database info into any form desired, but what process would I use to create and populate profile info and credentials?

    Thanks in advance, and I will answer any additional questions if you have them.

    Wishing you Peace Profound

    #323394

    In reply to: How to use bp hooks?

    shanebp
    Moderator

    There is already a filter with that name:
    apply_filters( 'bp_members_signup_error_message', '<div class="error">' . $error_message . '</div>' );
    It passes only one argument. You need to write a custom filter hook with a different name.

    also – these are the forums for BuddyPress.
    Please contact BuddyBoss for questions specific to their codebase.
    This thread is now closed.

    #323319
    restorm
    Participant

    I’m creating a new BuddyPress site that will be primarily organized around Groups. Each Group will represent a city, and each Group needs to have multiple Forums (such as for neighborhoods within the city). Two questions, please:
    1) How do I create multiple Forums for Groups? When I set up a new Group, it asks if I want the Group to have a Forum. But it says nothing about having more than one Forum.
    2) I’m confused about the difference between a BuddyPress user registration and a BBPress Forum user registration. Do I need both? Does the Forum registration just register them for one Forum, or for use of the whole BuddyPress site? If they register in BuddyPress, do they also need to register to take part in a Forum?

    In general, I don’t understand why BuddyPress and BBPress are separate plugins. It would make a lot more sense (and be less confusing) if they were all in one plugin, wouldn’t it?

    #322751
    sx1001
    Participant

    Hi guys,

    we have a big networks which keeps growing and growing – currently 20k users and still going strong. We want to try to tweak and improve every tiny screw / setting and we are just optimizing the database. Because: The DB is already 1.5GB and it’s growing fast.

    We identified a LOT of “default” metadata with every update / activity / post, hence this questions arise, I dig deep already 🙂

    1. Is it safe to delete the activity data where _link_embed=0 and _link_preview_data=”” (empty)? It comes for EVERY activity. 60% of ALL 100k activity rows are those “default” settings.

    2. Is it safe to delete the meta-data for sent messages which do NOT have a media, e.g. gif_raw_data or _gif_data or bp_media_ids empty values? In wp_bp_messages_meta

    3. Wouldnt it be possible to convert ALL userid fields (in messages, activity, users, friendship etc tables) to INT instead of BIGINT? This would reduce storage, index sizes, index scan time etc … We will never have 4 million of users…

    4. Would it do any harm when deleting “deleted” messages? I.e. messages from wp_bp_messages_messages where Subject==”Deleted” and message empty?

    5. Is it really necessary to store the subject of a message thread redundently? So for one thread within wp_bp_messages_messages we sometimes have 50 entries, all with the same subject.. (varchar…)

    6. the table wp_postmeta grows huge, because unfortunately, all uploaded attachements are handled as posts, hence quite some plugins like WPML or ELEMENTOR hook into it and save their metadata for every damn single uploaded attachement 🙁

    Thanks so far, hope we can get a really good discussion going here!!!!

    rcotwunite
    Participant

    Hello all,

    I am working on a site called for record collectors- https://recordcollectorsoftheworldunite.com/

    This site has a database of records. I’d like to add functionality to give users a “Wantlist” and a “Have list”. I’d like them to browse through records and click “I have this” or “I want this”. That will then update their “Wantlist” and “Have list” in their profile area. I’ll also need to figure out how to add “Wantlist” and “Have List” as pages in their buddypress account.

    So the two questions are:
    1. How can I have a button on my website add to a users’ buddypress account? (When they click “I want this”, how do i add it to their “Wantlist”?
    2. How do I add buttons/sections of their account so that they can access this area of their account?

    Thanks so much for the help!

    #322579
    dugost
    Participant

    In case this is helpful for anyone, I was able to get an Avada child theme to enqueue BP Nouveau styles conditionally based on code detailed here placed in my child theme’s functions.php file and making sure BP Nouveau’s /css/ directory sits in the same directory.

    function register_nouveau_stylesheet() {
        wp_register_style( 'bp-nouveau-enqueue', get_stylesheet_directory_uri() . '/css/buddypress.min.css' );
    }
    add_action( 'init', 'register_nouveau_stylesheet' );
    
    function conditionally_enqueue_nouveau_stylesheet() {
        // only enqueue on members-directory page slug
        if ( is_page( 'members-directory' ) ) {
            wp_enqueue_style( 'bp-nouveau-enqueue' );
        }
    }
    add_action( 'wp_enqueue_scripts', 'conditionally_enqueue_nouveau_stylesheet' );
    

    Unfortunately, logged in users will end up loading the Nouveau stylesheet twice so I’ll have to update this code further so it checks for login status and possibly user role. Hopefully, I can find a way to conditionally enqueue BP’s styles for the directory only as well. I don’t need those styles loading site-wide!

    #322566
    Diabolo
    Participant

    Thanks @danbp for that toggle snippet, nearly five and a half years later and still works a treat!

    Two questions if I may:

    1 Is it possible to default to hidden?

    2 Is it possible to move the button to another position?

    Toggle move

    I’m testing Youzify which may complicate things as it appears where I want to move it to is behind a Youzify component that only appears once a comment has been posted.

    From what I understand (which in coding is very little sadly) your code searches for the “Comment” button and inserts the toggle button after it:

    $(this).find('.button.acomment-reply').after(html);

    I tried modifying that line in your code to target the Youzify component which has a div class of “youzify-post-comments-count”, but alas, no joy.

    $(this).find('.youzify-post-comments-count').after(html);

    Any pointers would be much appreciated.

    Regards

    Edit: image doesn’t appear to be showing but can be seen here https://www.awesomescreenshot.com/image/18924495?key=fdf218d488bb16129f5baeb43949ba6b

    #321775
Viewing 25 results - 51 through 75 (of 2,990 total)
Skip to toolbar