Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddyboss'

Viewing 25 results - 51 through 75 (of 772 total)
  • Author
    Search Results
  • #326127
    rider2006007
    Participant

    Hi. Now the link to the profile page looks like this –

    mysite.com/members/test

    How to make a link to profiles like this? – mysite.com/test

    Or like this? – mysite.com/@test

    Use buddyboss. Maybe have hooks for function.php?

    #326049
    shanebp
    Moderator

    BuddyBoss is a fork of BuddyPress, done several years ago. The codes bases have diverged.

    #326046
    shanebp
    Moderator

    > …wp-content/plugins/buddyboss-platform

    These are the forums for BuddyPress, not BuddyBoss.

    #326044
    tim458
    Participant

    Hi,

    I want to make the Activity Post Form accessible to WordPress pages using short codes.
    The reference to the post form can be found here: html/wp-content/plugins/buddyboss-platform/bp-templates/bp-nouveau/buddypress/activity/index.php

    Which contains this…

    <?php
    /**
     * The template for BuddyBoss Activity templates
     *
     * This template can be overridden by copying it to yourtheme/buddypress/activity/index.php.
     *
     * @since   BuddyPress 2.3.0
     * @version 1.0.0
     */
    
    ?>
    
    	<?php bp_nouveau_before_activity_directory_content(); ?>
    
    	<?php if ( is_user_logged_in() ) : ?>
    
    		<?php bp_get_template_part( 'activity/post-form' ); ?>
    
    	<?php endif; ?>
    	
    	
    
    	<?php bp_nouveau_template_notices(); ?>
    
    	<?php if ( ! bp_nouveau_is_object_nav_in_sidebar() ) : ?>
    
    		<?php bp_get_template_part( 'common/nav/directory-nav' ); ?>
    
    	<?php endif; ?>
    
    	<div class="screen-content">
    
    		<?php bp_get_template_part( 'common/search-and-filters-bar' ); ?>
    
    		<?php bp_nouveau_activity_hook( 'before_directory', 'list' ); ?>
    
    		<div id="activity-stream" class="activity" data-bp-list="activity">
    
    				<div id="bp-ajax-loader"><?php bp_nouveau_user_feedback( 'directory-activity-loading' ); ?></div>
    
    		</div><!-- .activity -->
    
    		<?php bp_nouveau_after_activity_directory_content(); ?>
    
    	</div><!-- // .screen-content -->

    I want to reuse the following code which can also be found in the file above:

    	<?php if ( is_user_logged_in() ) : ?>
    
    		<?php bp_get_template_part( 'activity/post-form' ); ?>
    
    	<?php endif; ?>

    So I created a short code in functions.php in the child theme, which I use to place in WordPress pages as a shortcode…

    function InsertPostForm() {
    	if ( is_user_logged_in() ) :
    		php bp_get_template_part( 'activity/post-form' );
    	endif;
    }
    add_shortcode('InsPostForm', 'InsertPostForm');

    However, my solution does not work. I am very desperately in need of a solution. Please note my knowledge of PHP is very limited.

    Thank you!

    #325967
    shanebp
    Moderator

    > Buddypress plugin to use with my Buddyboss plugin

    You cannot use them together.
    Try deactivating all Buddypress and Buddyboss plugins.
    And then try deleting Buddypress.

    #325958
    Jordan Smith
    Participant

    I downloaded the Buddypress plugin to use with my Buddyboss plugin but ended up not needing it. After trying to delete I kept getting a deletion failure message. I’m not sure what to do. I should also note that my site isn’t broken from this but I got an email that there was a critical error so I wanted to fix it. I’m on wordpress 5.2 and my site link is: https://your-introverted-space.com
    Thanks

    #325782
    shanebp
    Moderator

    > I am using buddyboss platform as plugin

    Please contact BuddyBOSS.
    These are the forums for BuddyPRESS.

    #325778
    Abhishek
    Participant

    I am trying to hide send-reply functionality for my private group(only for one group), So only the group admin can send private messages to all users, and users can only read in their inbox not more than that.

    I tried various ways but did not get a result.

    I am using buddyboss platform as plugin

    #325462
    shanebp
    Moderator

    BuddyPress does not include forums.
    Are you also using bbPress? If so, you should post on their support forums.
    If you are using BuddyBOSS, which includes forums, you should contact them.

    jrapenne
    Participant

    Hi!
    The following message is displayed in d”ebug mode:

    Notice: Undefined variable: is_http_auth_req in /home/lceet/public_html/wp-content/plugins/buddypress-member-types/includes/buddyboss-plugin-updater.php on line 73

    A solution?
    Many thanks for the help

    #325142
    shanebp
    Moderator

    Learn how to use var_dump – it shows the output on the screen.

    You are using the BP Profile Search plugin, correct?
    If so, ask the creators of that plugin.
    If not, then you are using BuddyBoss and you should ask them.

    #324792
    futureyoon
    Participant

    I think I found the reason but not sure how to solve.
    I added the shortcode in a page to see how H5P is working and found out that H5P is using ‘iframe’ method.

    https://snipboard.io/NCvBSL.jpg

    but I beleive that buddyboss is not allowing the iframe on the activity feed (not sure, I might be wrong).

    then do you have any idea how to enable the iframe feature on the activity feed?
    so that possibly h5p shortcode is working.

    Please let me know your thought.

    Thank you so much

    #324785
    Fábio Roque
    Participant

    Hi @futureyoon

    Try this

    /**
     * Render shortcodes on feed posts
     */
    function enable_shortcode_bp_activity($content) {
        $content = stripslashes($content);
    	return do_shortcode($content);
    }
    
    add_filter('bp_get_activity_content_body', 'enable_shortcode_bp_activity', 0);

    ps: this was not tested in buddyboss 2.0

    #324784
    futureyoon
    Participant

    Hi Fabio,

    I happened to come across your post and was trying to use it on buddyboss theme and plugin but not sure why nothing is happening.

    I enabled your code in code snippet and i post a shortcode in activity feed, but nothing shows up…

    Do you have any idea?

    Thank you

    #324718
    shanebp
    Moderator

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

    #324717
    brickcitylive
    Participant

    I’m trying to create a cleaner user experience. I want to auto connect an inviter and invitee, when the invitee accepts an invite to join the site.

    I am using BuddyBoss and Invite Anyone plugin.

    If they get the email, accept the invite, and create an account, asking them to accept the original connection request seems like an extra unneeded step.

    #324642

    In reply to: LifterLMS conflict

    shanebp
    Moderator

    These are the support forums for BuddyPress – contact BuddyBoss.

    #324641

    Topic: LifterLMS conflict

    in group forum Third Party Plugins
    snoepys
    Participant

    Hi!

    I have an issue with LifterLMS and Buddyboss Platform. I have already contact with LifterLMS team and they say that is an issue from Buddyboss side, as you can see in these links:
    https://github.com/gocodebox/lifterlms/issues/2110
    https://github.com/gocodebox/lifterlms/issues/2142

    Please, I need that this issue will be fixed asap because I have no ability to change the courses tab order in my user’s profiles.

    Versions:
    Buddyboss Platform: 2.0.1
    Wordpress: 5.9.3
    LifterLMS: 6.5.0

    Thank you!

    #324541
    shanebp
    Moderator

    These are the forums for BuddyPress. Please contact BuddyBoss.

    #324540
    maestromike1977
    Participant

    Hi, I’ve tried the above code but it’s not working at all when I paste into my Buddyboss child theme’s functions.php..any ideas why not?

    #324505
    maestromike1977
    Participant

    Hi, I can’t seem to find a plugin to let users share Buddyboss groups to their social media accounts. Or even just the ability to share a piece of text (identifiable via css class for example). Any help much appreciated, thanks!

    #324287
    maestromike1977
    Participant

    Hi, I’m using Buddyboss theme, and when a user creates a group and its forum, I need the forum to have by default certain topics set up, eg. ‘Rules’, ‘General Chat’ etc. Not sure how to code this, any help appreciated thanks!

    #324086
    Mathieu Viet
    Moderator

    Hi, this is BuddyPress support, BuddyBoss is not BuddyPress: it’s a fork of it. We cannot take the risk to reply to something we don’t support. Please get in touch with the BuddyBoss support team.

    Mathieu Viet
    Moderator

    Hi, this is BuddyPress support, BuddyBoss is not BuddyPress: it’s a fork of it. We cannot take the risk to reply to something we don’t support. Please get in touch with the BuddyBoss support team.

    #324084
    Mathieu Viet
    Moderator

    Hi, this is BuddyPress support, BuddyBoss is not BuddyPress: it’s a fork of it. We cannot take the risk to reply to something we don’t support. Please get in touch with the BuddyBoss support team.

Viewing 25 results - 51 through 75 (of 772 total)
Skip to toolbar