Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum'

Viewing 25 results - 226 through 250 (of 20,277 total)
  • Author
    Search Results
  • #324768
    t.schwarz
    Participant

    This is how I got this done after serious research…

    This goes into your main js – source partly: https://support.themosaurus.com/forums/topic/add-a-pagination-on-top-of-buddypress-member-list/

    
    //add history state
    jQuery(document).on("mouseup touchend", ".bp-pagination a.page-numbers", function () {
       history.pushState({}, "Member directory - Page " + jQuery(this).text(), jQuery(this).attr("href"));
    });
    
    if (jQuery('body').hasClass('directory members')) {
       const params = new Proxy(new URLSearchParams(window.location.search), {
          get: (searchParams, prop) => searchParams.get(prop),
       });
       let value = params.upage; // upage being the passed pagination value
    
       var myCustomQueryData = {
         object: 'members',
         page: value || 1
       };
       
       bp.Nouveau.objectRequest(myCustomQueryData);
    }
    

    Hope this helps

    #324718
    shanebp
    Moderator

    These are the forums for BuddyPress.
    Ask BuddyBoss or the creators of the Invite plugin .

    #324701
    beachcalsix
    Participant

    @vasudevb, I never received a response here.
    However, I did find this post on buddydev.com
    They don’t explain the code very well, I wanted all users to be able to view the posts but only a certain role to be able to comment. But this code doesn’t use roles. If I was better at coding, I would just create something myself or tweak this code. If anyone here could explain it further, I’d be very grateful. But I’ll probably post on buddydev as well. Otherwise, I’ll just settle with blocking the entire page by role as I’m currently doing.

    #324663
    gmomebe
    Participant

    Natural Medicine Forums

    Above link
    – Members can make a post but can’t comment to the post?
    Help

    #324642

    In reply to: LifterLMS conflict

    shanebp
    Moderator

    These are the support forums for BuddyPress – contact BuddyBoss.

    nancysuzona
    Participant

    Basically, I want to update the site-wide activity tab to display only status updates (“Post in: profile” status updates, specifically). So no group updates, new forum topics, forum replies, etc. However, I still want all of the relevant activity to display under the “My Groups” tab whenever there’s new group activity.

    #324541
    shanebp
    Moderator

    These are the forums for BuddyPress. Please contact BuddyBoss.

    #324492
    mbaccarella
    Participant

    This forum is filled with outdated responses, but I will try to get an answer anyway.

    I received an email from WordPress that says:
    “Since WordPress 5.2 there is a built-in feature that detects when a plugin or theme causes a fatal error on your site, and notifies you with this automated email. In this case, WordPress caught an error with one of your plugins, BuddyPress to WordPress Full Sync.

    Everything on my server-side is updated.
    WordPress version 5.9.3
    Current theme: Cera (version 1.1.13)
    BuddyPress 10.2.0.
    BuddyPress to WordPress Full Sync (version 0.3.7)
    PHP version 7.4.28

    I deactivated, then subsequently deleted BuddyPress to WordPress Full Sync. I then downloaded a clean copy of the plugin from the WordPress plugins page. I re-installed and re-activated it without difficulty.

    I still cannot upload the group profile picture. I can upload the group cover image, but not the profile picture. The image uploads but fails at the cropping stage. I have read the other responses. My file name was never long, but even the file name “g1” does not work, so the filename length does not seem to be the issue. I have tried different sizes and extensions (.png and .jpeg) with consistent failure.

    Please help resolve this issue.

    nancysuzona
    Participant

    I’m new to here and this issue has been a real head scratcher for me.

    Basically, I want to update the site-wide activity tab to display only status updates (“Post in: profile” status updates, specifically). So no group updates, new forum topics, forum replies, etc. However, I still want all of the relevant activity to display under the “My Groups” tab whenever there’s new group activity.

    #324231
    shanebp
    Moderator

    Those items can be accomplished but the solutions are beyond the scope of these forums.
    If you cannot write the necessary code, you will need to hire an experienced BP developer.

    #324001
    shanebp
    Moderator

    These are the forums for BuddyPRESS.
    You could ask BuddyBoss about it.
    Even better – contact the creators of the Conditional Profile Fields plugin.

    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

    #323945

    In reply to: Database Errors

    shanebp
    Moderator

    You might ask on the support forums for bbPress.
    Or on the forums for GeneratePress.
    also – in general, using the BP Nouveau template pack is much preferable to using the BP Legacy template pack.

    #323943
    havealookhere
    Participant

    OW WOW, this is a very old forum post.. but thank you!!!! the .hidden was the problem

    #323937
    shanebp
    Moderator

    You are using BuddyBoss – these are the forums for BuddyPress.
    Ask your question on the Facebook page for BuddyBoss Community.

    #323826
    mihaylovra
    Participant

    Hi!

    This code worked for me https://archived.seventhqueen.com/forums/topic/hide-members-without-avatars#post-15504

    It would be nice to include it in the default theme settings.

    #323753
    freya
    Participant

    Hello,
    I have a repeater fieldset with ‘Website’ and ‘URL’ field.
    Here is my current code to display the datas (it’s within a while loop):

    <?php if ( bp_field_has_data() ) : ?>
    <?php echo bp_get_the_profile_field_value(); ?>
    <?php endif; ?>

    At the moment the datas are displayed like this:

    <p>Website name #1<p>
    <p>URL #1<p>
    <p>Website name #2<p>
    <p>URL #2<p>
    ...

    There is some formatting with <p> and added + I would like to get separate datas.
    I searched all over the forums, tried a lot of ways, I can’t find a solution.
    Could you please help me find a way to get the raw datas?
    Thank you!

    #323445
    sx1001
    Participant

    Hello dear forum community,

    do you have an idea how to solve this: in the list of displayed activity comments within a certain group, which I can identify by the group ID, I want to show only the contributions of the currently logged in user.

    So in the end a kind of filter that acts as if the database entries of other users wouldnt be there at all (maybe by manipulating the returned result set). I want to set up a support forum where each user sees only his own support requests.

    Is there a “bp user can” hook which could help?
    Thanks!

    #323395
    Dave Lozier
    Participant

    @amtrxangel if I understand correctly you do not want forum digest emails for group forums?

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

    #323354

    In reply to: 404 on New Topic

    shanebp
    Moderator

    These are the forums for BuddyPress.
    The support forums for bbPress are here.

    #323347
    chetansoul1993
    Participant

    https://instylla.com/hes-hvt-pivotal-study/new-topic/?ForumId=0&site=CARTI

    Hello Support Team,

    When I access above URl it shows 404 error page. It’s not working on SSL website but it’s working on other non-secured website. Any help would be appreciated.

    Thank in Advance.

    rcotwunite
    Participant

    Hello all,

    I’ve created a custom theme. I’ve kept it simple, and I like everything about it except that my /register page is blank! Along with all the other buddypress stuff and the forum, etc.

    Is there some piece of code i need to include in my .functions.php or header or something to make all this work together?

    When I switch to another theme, like twenty-twenty-one, the register page shows up, BUT the style makes all my pages look really bad! What can I do to make this bit work in my theme?

    working on the site http://staging3.recordcollectorsoftheworldunite.com/

    Thanks so much.

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

    #323267
    maryreyes
    Participant

    Why does clicking on my user name (upper right corner of the screen) in my forums take me to the Edit Profile page instead of the View Profile page, and how do I change it? It shouldn’t take me to the profile editing page unless I click on “Edit profile” or I choose the “Edit” option on the profile page itself.

    (Incidentally, it’s even more screwed up on this forum. It goes to https://buddypress.org/wp-admin/profile.php , not anything to do with me. Naturally, I get a “Sorry, you are not allowed to access this page.” error.)

    WP Version 5.9
    BP Version 9.2.0
    bbPress Version 2.6.9
    bbp style pack Version Version 4.9.1

    Site: http://www.laceioli.org

Viewing 25 results - 226 through 250 (of 20,277 total)
Skip to toolbar