Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 13,051 through 13,075 (of 73,986 total)
  • Author
    Search Results
  • #259279
    danbp
    Participant

    Hi,

    you read the wrong article.
    You say that you installed bbPress 2.5.10 plugin today. So reading about forum migration is useless ! 😉

    Better try to follow what’s explained here.

    theacademicperson
    Participant

    I am using WordPress 4.6.1 and BuddyPress 2.6.2 for a week. To create a new discussion forum with functionalities of community websites (e.g. private message, member friendship etc.) for the members I installed bbPress 2.5.10 plugin today and was reading the BuddyPress documentations to use bbPress within BuddyPress. In this article the authors suggested to migrate the forum within BuddyPress to bbPress and in the (3) paragraph they suggested to go to settings > BuddyPress > Pages > Discusssion forums.

    I followed the path but couldn’t find “discussion forums” option within “page” or any other tabs in BuddyPress settings.

    My question may seem silly, but still I request for your help as I have just started using BuddyPress and haven’t published my website yet…I don’t have much knowledge about this plugins.

    one of the reasons that I think can be possible is that I haven’t created a forum yet using BuddyPress. Please guide me in this matter and if you know suggest any resources where I can find the step-by-step process to include bbPress forum within BuddyPress.

    #259275
    sjoerdkoolen
    Participant

    I am looking for a solution where different groups of users (not buddypress groups) cannot see each other. So, I would like that only different members of the same user group can see each other. Would this be possible somehow?

    #259273
    caykimtien88
    Participant
    function plugin_registers_post_type() {
    	$args = array(
    		'public'   => true,
    		'labels'   => array(
    			'name'                     => __( 'Artikel', 'your-plugin-textdomain' ),
    			'singular_name'            => __( 'Artikel', 'sozialdynamik' ),
    			'bp_activity_admin_filter' => __( 'Neuer Artikel veröffentlicht', 'sozialdynamik' ),
    			'bp_activity_front_filter' => __( 'Artikel', 'sozialdynamik' ),
     			'bp_activity_new_post'     => __( '%1$s hat den neuen <a href="%2$s">Artikel</a>', 'sozialdynamik' ),
     			'bp_activity_new_post_ms'  => __( '%1$s hat den neuen <a href="%2$s">Artikel</a>, on the site %3$s', 'sozialdynamik' ),
    		),
    		'supports'    => array( 'title', 'editor', 'buddypress-activity' ),
    		'bp_activity' => array(
    			'component_id' => 'activity',
    			'action_id'    => 'new_sd_article',
    			'contexts'     => array( 'activity', 'member' ),
    			'position'     => 100,
    		),
    	);
    	register_post_type( 'sd_article', $args );
    }
    add_action( 'init', 'plugin_registers_post_type' );
    #259272
    caychumngaygiong1
    Participant

    Hi,

    Is there a premade plugin to achieve that instead of coding as We are not a coder?

    Usually, where do people put group description and their activities in Buddypress?

    Thanks

    #259271
    Paul Wong-Gibbs
    Keymaster

    WP SEO plugins won’t work on those kind of BuddyPress “page”, because they actually are not real “pages”, so everything gets confused.

    I’ve not seen a BuddyPress-specific SEO plugin – I suspect some people don’t realise they aren’t handled by most SEO plugins – or have been built with custom code.

    danbp
    Participant

    – If you want to exclude user group forums from the directory, you alter the group loop.
    – If you want to modify the way forum (whatever the type) works internally, you alter the bbpress code.

    Forums are handled by bbPress, BuddyPress only show them up and add user management.

    When you set up group forums, you create a new forum in bbPress and give it a type of “category”. Which is not the case when you create a site wide forum and use “forum” as type. This is the only difference for bbPress.

    danbp
    Participant

    Hi @venutius,

    i guess you can use at least 2 options:

    Group Meta Queries: Usage Example

    or build a custom group directory and use something like this hack.

    Codex reference: groups-loop

    Venutius
    Moderator

    My forum list keeps getting new group forums added to it, I would prefer it if the forum list only contained A list of the general sitewide forums and not the forums for the groups. Is there anyway to remove them from this view?

    #259253
    kyla123
    Participant

    I have Buddypress Wall. My POST button for comments is not showing. On my laptop, i can hit ENTER and the comment will submit, but when using on my phone (on mobile version and desktop version), I can not get comment to submit. Earlier the post button was visible, briefly. Now it is not showing at all. It seems to have disappeared. It was there to begin with. I don’t know what happened to it. Help?

    #259249
    BackpackersUnion
    Participant

    Brajesh with BuddyDev coming through with the save!

    Make your BuddyPress Sitewide Activity Stream Friends Only

    danbp
    Participant

    If you’re an experimented developer,

    Create a Real-Time Video Chat Room with WebRTC & Twilio

    else
    https://www.cometchat.com/buddypress-chat

    Both are premium.

    #259245
    danbp
    Participant

    Hi,

    here a CSS trick which let you wrap the whole fields into 1 column:
    https://premium.wpmudev.org/forums/topic/buddypress-registration-page-1-column-layout

    Or
    could be made with this premium plugin: https://buddydev.com/plugins/bp-ajax-registration/

    Or
    manually by coding your own reg template
    https://buddypress.org/support/topic/changing-the-layout-of-the-registration-page/

    #259243
    jbboro3
    Participant

    Ah! Now I got it what you’re trying to achieve..

    Well, that is very much doable but then this is no easy task..

    If you want to include images and other styling options, you can replace the plain text form with tinymce rich text editor by putting some codes in bp-templates/bp-legacy/buddypress/groups/create.php. But remember, simply enabling rich editor will not work unless you allow the img & other relevant tags, else it will strip off and data will not be saved..

    You can manage the wp media library to view able to only the person who uploaded the media.. This way it will not mixed up with many other users with their files..

    And for hiding the content or long description, you can use js to show/hide..

    You can also add other template pages if you need other separate pages for description like address, events etc.. Remove the default no-ajax nav items and replace it with your own custom items.. You can also ajax them, if you want them to.. They looks pretty straight but are more complicated that what you just read.. I did the similar kind of work before..

    I’m not sure if you’re looking something like this: http://imgur.com/a/k9SbZ

    #259234
    renix
    Participant

    @Venutius
    I’ll give BuddyPress Groups Extras then 🙂


    @jbboro3

    Yes that’s true but with a very minimal description.
    We want more :p
    Exactly what @Venutius said earlier.

    I’ll report back soon.

    Meanwhile, I found this https://codecanyon.net/item/frontend-publishing-pro/8517990
    I might give it a try first (with the demo :p)

    Thanks

    #259227
    jbboro3
    Participant

    Doesn’t bp groups already creates separate pages for each group? also put description of the page while creating?

    While, if you’re trying to achieve something like groups or pages in facebook, that will be a massive task, and for that CMS or buddypress is not a good choice to begin with. It will be better to custom build with php..

    #259222
    renix
    Participant

    Hi,

    Thank you for all your responses.


    @jbboro3

    That’s correct, only group admin is able to change the custom page.

    I was using bp-simple-front-end-post and Blog Categories for Groups to achieve that, but these plugins creates a new page every time I (act as group admin), publish a page, and whenever I tried to edit the page, it redirects me to wp-admin (I don’t want that).
    To sum up, We want every group can have their own page.
    Categorized as:
    Grup 1:
    domain.tld/grouppage/group1page
    Grup 2:
    domain.tld/grouppage/group2page
    etc.

    Then they can publish the page and edit the page from front end only.


    @Venutius

    I have enabled BP Group Docs and BuddyPress Group Documents too and it did not deliver what we want to.

    Thanks

    #259220
    Venutius
    Moderator

    There’s not really that much available. in terms of relating blogs to groups there’s really two options, for a single site you can use the combination of relate blog categories for groups, which you have already tried, and use this with bbPress Topics for Post which will allow you to have comments for that post appear within the group forum.

    The other option is to use BuddyPress GroupBlog, but that only works in a multisite environment.

    There are other plugins such as BP Group Docs, Buddypress group Extras and BuddyPress Group Documents that you may like to look at but none of these really gives you the type of group homepage customisation that is required.

    I did try to do a template overload of the group home page but I found that the way the Forum works interferes with this so it is not trivial and beyond my capabilities for the moment. If you can, hire a developer is all I can suggest.

    #259218
    renix
    Participant

    Hi,

    Is there a premade plugin to achieve that instead of coding as We are not a coder?

    Usually, where do people put group description and their activities in Buddypress?

    Thanks

    #259216
    Henry Wright
    Moderator

    I’ve tested BuddyPress on Twenty Fifteen and Twenty Sixteen recently, both work great. Outside of those 2 themes you’ll have many choices but my best advice would be to set up a testing site and try out before you go live.

    Hope this helps.

    #259213
    danbp
    Participant

    @renix,

    the first solution would be to use a group blog, but it may be a heavy project. So, IMHO, best way would be to create a plugin and using Group Extension API.

    You can also check for an eventual existing plugin who fit to or narrow your goal and customize it.

    #259212
    danbp
    Participant

    Hi,

    color scheme’s are usually defined by the theme. Positioning elements needs some ID’s or class correctly defined and a medium knowledge for HTML & CSS handling.

    if you create a child theme, you can change a lot of things related to BuddyPress, including CSS.

    Read through the theme guidelines on BP Codex to get a general overview and check also the documentation of your theme.

    Unfortunately, you use a premium theme and, as we have no access to his code, we can’t assist you more for it. Any questions related to it should be asked on your theme support.

    But don’t hesitate to search the BuddyPress forum using keywords like css, template and so on…

    danbp
    Participant

    Hi,

    Read how to search strings here:

    Your connection to this user

    #259205
    liammacmillan
    Participant

    First of all, I’m on BuddyPress 2.6.2 and WordPress 4.6.1.

    My BuddyPress pages styles are clearly off, and I’m wondering why. Obviously the colour scheme doesn’t quite work, I’ll fix that, but the issue is the positioning of elements.

    The site I’m working on: http://pvp.world/pvpworld/members/

    Is my only answer to create a custom members page, or is there something wrong here?

    Thanks in advance,
    Liam

    etomova
    Participant

    Hello,

    I have several Group forums an each of the forum has 5-6 moderators. However when there is a new question in the forums none of the moderator receive notification that there is a new question.

    I also installed bbPress Notify plugin v0.2.2. My BuddyPress version is 2.5.10.

    Thank you.
    Elly

Viewing 25 results - 13,051 through 13,075 (of 73,986 total)
Skip to toolbar