Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddyboss'

Viewing 25 results - 151 through 175 (of 691 total)
  • Author
    Search Results
  • nemi313
    Participant

    I know but there isn’t a forum for BuddyBoss, and I don’t know if it’s BuddyBoss or BuddyX or something completely different that’s causing the issues, and maybe someone using BuddyPress has had a similar issue. I’m just trying to narrow down the problem.

    shanebp
    Moderator

    These are the forums for BuddyPress.
    Please send your questions to BuddyBoss and / or the creators of the BuddyX theme.

    #319619
    Mitsuhiro Kato
    Participant

    Awesome!
    Thank you very very very much!
    I could make it!

    I love BuddyPress.
    I was thinking which one is good for me, BuddyPress or BuddyBoss before I use BuddyPress.
    BuddyPress is so GOOD!
    So, I will use BuddyPress forever.

    #319474
    TheSupercargo
    Participant

    Can anyone recommend a market place or a directory of programmers – or an individual perhaps – who might be prepared to help me improve the BuddyPress forum I’m running? My small group is willing to pay an hourly fee for occasional help.

    We are generally satisfied with the way BuddyPress works out of the box, and we’re not interested in all the bells and whistles provided by paid-for themes like BuddyBoss. We’d just like to change a few of things BuddyPress provides, and above all try to understand the basics.

    We are not interested in learning to code – that’s not what we want to use BuddyPress for. I’m our member with most knowledge of WordPress and I feel I’ve reached the end of what I can do on my own. I’m looking for help, but we can’t pay big bucks, so is there somewhere BuddyPress coders market their skills to help people in our situation?

    Thanks for your advice.

    Here’s our website: pensaroundtheworld.com

    We use Siteground as our hosting service and the current WP installation with a child version of thee Sinatra theme.

    John

    #319464
    isans
    Participant

    Hi,
    Well as BuddyBoss is just a fork of BuddyPress, and considering most of the stuff that works for BuddyPress works for BuddyBoss too… In fact I’m pretty sure that for this exact problem I have both plugins work the same way.

    I already asked them and they didn’t help me at all. Besides, they don’t have any kind of user forum, and this community looks way more helpful.

    #319463
    shanebp
    Moderator

    These are the forums for BuddyPress.
    If you are using the BuddyBoss plugin – you need to contact them with your questions.

    #319461
    isans
    Participant

    Hi all,
    First of all, this is my first time posting here (or in any other forum like this actually) so apologize if I’m missing info or something is not clear. Also, I have very little experience extending WordPress plugins.
    I’m working on a community + e-learning site using BuddyBoss and LearnDash, and there’s an apparently little thing that I need to extend from the base functionality that I don’t know how to develop.
    What we need to achieve is to somehow have paid groups. We have MemberPress, which allows us to do so, but the problem is how to take the user to the correspondent membership page when they try to access a paid group.
    The solution that comes to my mind is to somehow change the default behaviour of the Request Access button on Private groups so that, based on a variable of the given group (that could contain the URL of the associated membership), it redirects users to the membership page.
    I find myself with 2 problems here:
    1. How to add a “field” to each BuddyBoss group that I can use to fill it with the MemberPress membership URL or ID that gives access to that paid group.
    2. How I change the behaviour of the Request Access button so it reads that field and redirects the user there instead of doing what it currently does. Ideally, if the field is blank, the Request Access button should behave as default.
    Do you think this is overall a good approach to the problem we have? Any ideas on how to solve problems 1 and 2?
    Any help is much much appreaciated.
    Kind regards,
    Ignasi.

    homelesshenry
    Participant

    I’m trying to change the excerpt length for the activity feed. And I can’t figure out why it’s been so difficult.

    For example, I’ve used the following code:

    function buddydev_modify_excerpt_length( $length ) {
    	$length = 1225;
    
    	return $length;
    }
    add_filter('bp_activity_excerpt_length', 'buddydev_modify_excerpt_length' );

    I even went into bp-core/bp-core-template.php for a hard-coded solution:

    function bp_create_excerpt( $text, $length = 1225, $options = array() ) {

    Still it doesn’t change my excerpt length. I then thought it might be the theme I’m using (Buddyboss) and went poking around but couldn’t find anything; although maybe there is something and I didn’t look well enough.

    Otherwise, could it have anything to do with the activity feed posts in question being added post types (woocommerce product pages) via the guide by Mathieu Viet:

    Post Types Activities

    Anyone else have similar issue or know what it might be?

    #319316
    kvnandula04
    Participant

    But by theme is Buddyboss which is by Buddypress.

    #319281
    webindiainc
    Participant

    Hello All,

    Waiting for solutions for my query. Anyone have solutions for the same.

    I want to pass meta value in group rest API.

    {{root_url}}/wp-json/buddyboss/v1/groups

    rsutt
    Participant

    Hi all,

    I’m trying to modify the BuddyPress activity loop for my BuddyBoss site. I have quite a specific outcome in mind, but any help towards attaining this will be very welcome. I have a rough idea of most of the moving parts but I’m finding it difficult to pull it all together so any help would be greatly appreciated.

    I’m trying to make a loop that shows forum replies and discussions which have an image uploaded to them and are posted with a specific word or hashtag.

    I have two major questions:

    1. Does anybody have an example of a working loop which could be placed into a PHP shortcode creator so I can experiment with the different things the loop can be modified to show? I’m having trouble even creating a working loop right now.

    2. I know I can search through loops via keyword to filter out the hashtag, but is anyone aware of how to only return replies or discussion posts with images attached/uploaded? I can’t seem to work this bit out.

    Any information very much appreciated.

    Thanks in advance!

    #318884
    sx1001
    Participant

    Hi all,

    I want to conditionally add a step in the Group Creation wizard of Buddypress / Buddyboss.
    In step 2 my form asks for a specific field (via a Select-box with the HTML name “group-types[]”).

    Whenever a specific group type is selected and the user clicks “next step”, I want to add a new step inbetween conditionally on the group type field.

    I found the Group Extension API which is very complicated to understand:

    Group Extension API

    And I found this code:
    https://gist.github.com/shanebp/c9cdde9443bdeab9b4ca

    It kind of works, but there are two things:

    I’m not sure where exactly to “ask” the already made setting “group-type[]” for the group in the creation wizard and unfortunately the settings-page “Ville” is added at the end.

    I tried to set a “position”-element in the $arg which is passed to parent::init( $args ); but this is not accepted.

    Any help would be highly appreciated.

    #318571
    medsupplynetwork
    Participant

    Hi All,

    I’ve just installed BuddyPress, bbPress and BuddyX with the BuddyX child theme. When I click on the “RSS” feed button (which I don’t even particularly need for the record), it brings me to a broken link site point to BuddyPress:

    Title: “https://www.medsupplynetwork.com/activity/feed/”
    Body: “<rss xmlns:content=”http://purl.org/rss/1.0/modules/content/&#8221; xmlns:atom=”http://www.w3.org/2005/Atom&#8221; xmlns:sy=”http://purl.org/rss/1.0/modules/syndication/&#8221; xmlns:slash=”http://purl.org/rss/1.0/modules/slash/&#8221; version=”2.0″>
    <channel>
    <title>MedSupply Network | Site-Wide Activity</title>
    <link>https://www.medsupplynetwork.com/activity/</link&gt;
    <atom:link href=”https://www.medsupplynetwork.com/activity/feed/&#8221; rel=”self” type=”application/rss+xml”/>
    <description>Activity feed for the entire site.</description>
    <lastBuildDate>Sun, 16 May 2021 19:48:22 +0000</lastBuildDate>
    <generator>https://buddypress.org/?v=7.3.0</generator&gt;
    <language>en-US</language>
    <ttl>30</ttl>
    <sy:updatePeriod>hourly</sy:updatePeriod>
    <sy:updateFrequency>2</sy:updateFrequency>
    </channel>
    <iframe src=”https://app.zoominfo.com/reachout-pixel/track?app=DOZI&url=https://www.medsupplynetwork.com/activity/feed/&#8221; id=”reachout__pixel” frameborder=”0″ scrolling=”no” style=”width:1px; height:1px; display: block”/>
    </rss>”

    I have no idea what’s going on with this…
    Also, a couple of questions:
    1.) Do I need to install rtMedia directly?
    2.) Do BuddyPress and BuddyX work together directly?
    I know the developer of BuddyX is a BuddyPress (or former – not sure?) developer of BuddyPress – but I want to make sure that everything is in sync and I’m not using BuddyBoss b/c it appears that BuddyBoss and BuddyPress are not 100% in sync with each other.

    I’m aiming to create a social networking website for healthcare profesionals and medical suppliers in the safest (technical) way possible – and I’ve built this using Linux Ubuntu + NGINX + MYSQL + PHP 7.4-fpm + AWS EC2 (and route 53 elb asg’s etc.).

    any help woudl be greatly appreciated!

    #318648
    myblackf150
    Participant

    Sorry to offend shanebp. After being a member for 10 years and graciously learning from others, this has only been the 3rd question I have actually asked here.
    As I had mentioned above which I don’t think you may had read, I did reach out to their support team and it was futile. I am very aware this is not BuddyBoss support

    Because the BuddyPress platform is built from BuddyPress code I just it may be logical and harmless to ask.

    My question was “Does anyone know any way to enable WP Shortcodes in buddypress/bbpress topics? At least for Admins.

    I only mentioned BuddyPress Platforms because on one of the sites I currently administer, it uses that.
    But by and large, the question was geared towards BuddyPress not BuddyBoss.

    I can understand the frustration it may bring to see how many times people have confused BuddyPress with BuddyBoss, but I am not one of them

    https://buddypress.org/support/search/buddyboss/
    Over 25 pages and counting.

    So mea Culpa,I’m just hoping to find answers that would work in BuddyPress with the hope that it would work that BuddyBoss Platform and I can get some rest from these folks.

    Thank you

    #318646
    shanebp
    Moderator

    Please send BuddyBoss issues to their support team.
    These are the forums for BuddyPress.

    myblackf150
    Participant

    Hello,

    Does anyone know any way to enable WP Shortcodes in buddypress/bbpress topics? At least for Admins.
    There are some plugins such as Quizzes and Polls that provide shortcode that can be easily added/started into a topic where a widget won’t work or is called for.
    I understand that it can be a security concern for just any user to have the ability, but if it was limited to Mods, Admins and Content Providers it would great.

    I did find that GD bbPress tools DOES work (lets you have the function to use any shortcode in topics ) if you initially have it installed prior to installing BuddyPress Platform BUT if you have any other customization or toggles you had enabled on GS bbPress prior to the the BuddyPress install, you are STUCK to what it was set on because I found that BiddyPress Platform locks you out of the config for GD bbpress leaving you to keep as is or removing GD bbpress tools all together. Unfortunately I had to remove it because I did not want one of the settings I previously added. Don’t bother trying to re-install it. It won’t work.
    I found another plugin, bbPress – Do Short Codes – it is abandoned and hasn’t been updated in years but it worked. The problem here was, there was some code in that for some reason clashed with the Buddypress mailbox.

    So in all, I know it can be done and it can work but I am hoping I can find one that works with Buddypress Platform or at least without issue.
    I did reach out to Buddypress Platform tech support and the person who was helping basically closed the ticket regarding the inbox not working as soon as I figured out it was the plugin.
    When asked about shortcodes in topics I was told it was not a feature. O-K.

    Thank you in advance for any help.

    Regards

    Wprdpress 5.7.2
    BuddyBoss Theme and BuddyBoss Platform Pro

    #318567
    sklemenc
    Participant

    Hi all,
    i love buddyboss platform.

    Is there any option or plugin that shares the post of other users in my activity feed (like in fb)?

    Thanks.

    torres182
    Participant

    Hello.
    Does this plugin (or BuddyBoss) allow users to set whether they want to auto approve member connection requests?

    Thank you,
    Tallon

    kevinbrands
    Participant

    Hello,

    Is it possible to create/add folder structure for uploads?

    Is there an extension or a plugin available for this? (We don’t want to use BuddyBoss)

    Hope to hear from you, thanks in advance.
    -Kevin

    tantrigger
    Participant

    Hello,

    the signin and signup form is mixing english and german language

    Sign in Form which should be displayed in German language

    Can someone please help me to fix this?

    I’m pretty new to wordpress and buddyboss
    I’m using plattform v.1.5.8 and theme v1.6.5 and wp 5.7.1.

    #318050
    Varun Dubey
    Participant

    @fmlrwemakefuture it’s not the correct support board, you should contact Buddyboss directly.

    #318035
    fmlrwemakefuture
    Participant

    Hey there,

    for a client we set up Learndash and Buddyboss using the Buddyboss Theme. Elementor is also installed as a builder.
    The Course and Lesson Pages however show too many information like “progress” and “members” and more. Can I change the design layout for courses and lessons? And if yes, how?

    The main task would be to hide many elements, not to add more.

    Thanks for your help

    #318023
    shanebp
    Moderator

    >Hopefully I’m at the right place for this question.

    No, these are the forums for BuddyPress.
    You should send your question to BuddyBoss or BuddyForms.

    ad70
    Participant

    I use BuddyForms Members plugin (1.4.15) (WP 5.7, buddyboss 1.5.7.3).
    It allows integration of Buddyforms with member profiles by extending class BP_Component.

    What I need, is that this ‘profile integration’ is conditional to the member type (‘user’, ‘location’, ‘organisation’). Only organisation/location membertypes should get ‘profile integration’.

    So, I end up in buddyboss-platform\bp-core\classes\class-bp-component.php. On line 475 I found:

    do_action( 'bp_' . $this->id . '_setup_actions' );

    I can interact with bp_set_nav by adding code in the class on line 476:

    if ($this->id == 'buddyforms') {
    remove_action( 'bp_setup_nav', array( $this, 'setup_nav' ), 10 );
    }

    But, how do I refer to $this from outside the extended BP_Component class (BuddyForms_Members_Extention)? What doesn’t seem to work from My Plugin function.php:

    add_action( 'bp_buddyforms_setup_actions', 'my_function', 10 );
    
    function my_function() {
    $buddy = buddypress();
    remove_action( 'bp_setup_nav', array( $buddy, 'setup_nav' ), 10 );
    }

    Hopefully I’m at the right place for this question.

    wholets
    Participant

    Hi, I dig so much but I could not find any solution for auto-generating nickname during registration. I want to hide this field and want it to be auto-generated by the system. Can you help me please

Viewing 25 results - 151 through 175 (of 691 total)
Skip to toolbar