Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 18,051 through 18,075 (of 68,987 total)
  • Author
    Search Results
  • #175118
    johnnymestizo
    Participant

    It looks like bbpress migrates the old group forums and indexing an empty shell forum for each old group forum.

    Then it adds a correct version to each buddypress group…

    Not sure if that was meant to happen or not.

    I will work with that. If anyone else has issues please let me know.


    @johnnymestizo

    #175117
    johnnymestizo
    Participant
    #175103
    applegateian
    Participant

    Sorry guys, turns out this was in my functions.php extending the search functionality (Single Search page for all buddypress components)

    Apologies.

    #175102
    Stefan S
    Participant

    Its solved. I had a plug-in that did overide the translation that I did in the core function php file in buddypress.

    The plugin. Now deleted. 😀
    https://wordpress.org/plugins/rs-buddypress-activity-refresh/

    #175093
    modemlooper
    Moderator
    #175088
    neelesh7
    Participant

    Hi @modemlooper. Thanks for your reply. Yip. I created it in the backend but it doesn’t show up on the registration page. I also disabled all buddypress related plugins and then buddypress and deleted and re-installed but the settings remained.

    #175085
    shanebp
    Moderator

    > they’re totally inaccessible afterward
    They are accessed on the front-end on a member’s profile page.
    your-site.com/members/peteratomic/profile/

    >Clicking the “your profile” link in the backend brings up a page
    In the Dashboard, that link takes you to the DashBoard > User > Edit screen which is a standard WordPress screen.
    If you want to view and edit BuddyPress Extended Profile fields on that screen,
    then you might be interested in this premium plugin:
    http://www.philopress.com/products/bp-dashboard-user-profile-edit/

    #175083
    David Cavins
    Keymaster

    I think it really depends on the plugin. Some plugins make the creation step routine filterable (like BuddyPress docs) and some do not, unfortunately. Of course, uou could add a filter to plugins that don’t have them, and submit the changes back to the plugin author.

    In the case where it is filterable, like BP docs, you can hook in like this:

    add_filter('bp_docs_default_group_settings', 'bp_docs_default_settings_for_child_groups', 10, 1);
    function bp_docs_default_settings_for_child_groups($settings) {
      // If this new group is a child group of another group, we'll set up BP docs to match the parent group's setup. This step copies the parent group's attributes over to the child group.
      // We may have to get the parent ID from the cookie 'bp_new_group_parent_id'
        $parent_id_cookie = $_COOKIE["bp_new_group_parent_id"] ;
        $parent_settings = groups_get_groupmeta( $parent_id_cookie, 'bp-docs');
        
        if ( !empty($parent_settings) ) {
          $settings = array(
              'group-enable'  => isset( $parent_settings['group-enable'] ) ? $parent_settings['group-enable'] : 0,
              'can-create'  => isset( $parent_settings['can-create'] ) ? $parent_settings['can-create'] : 'admin',
            );
        }
    
      return $settings;
    
    }

    But as to a general case, I’ve not found the answer. Most plugins want to have their settings set on group creation, too, so you’ll need to handle that task as well.

    #175078
    BarryB64
    Participant

    sIt sounds like you just need a forum, which would be bbPress. The reason bbPress and BuddyPress are separate plugins is that this allows people to pick and choose according to their needs.

    What you need to figure out first is, what do you want and need?

    This is precisely where my mind was, yesterday. 🙂 Thank for the directed question and the link mentioned by mercime. I’m getting a better picture of two things.

    The document provided clarity on the difference between a sitewide forum and the group forum. I needed this; regardless of app. Here’s the plan:

    I want to create two distinct group forums. The first is “Shore Classified”. I want this to be a private group forum and not open to the public. This is where I’ll have individual forums dealing with specific topics relating to that forum. Ex. Business forum handle businesses in the Shore area. Another forum is Help Wanted.

    I was planning to open this to a specific group of people. I am initially thinking the people in my church and others in the Jersey Shore area. Right now, I’m questioning what should be in that type of forum; as I am concerned with safety. So, I am open to alternative to what type of forum. I’d also like a forum where blog writers can share new stories they’ve written.

    The second group forum is PUBLIC. This group forum is where I want people to go. This will need further developing. My initial thoughts is to create forums for popular area of interest. I did see a plugin that will create topics from my sites blog posts.

    #175072
    @mercime
    Participant

    @barryb64 As @synaptic mentioned above, the labsecrets.com video is outdated. Check out https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/

    #175034
    Asynaptic
    Participant

    I need an interface that organizes all the forum related tasks. I’m finding the setup with BuddyPress & bbpress to be a little intimidating.

    It sounds like you just need a forum, which would be bbPress. The reason bbPress and BuddyPress are separate plugins is that this allows people to pick and choose according to their needs. What you need to figure out first is, what do you want and need?

    To learn more about how to use bbPress, check out the official guides here: https://codex.bbpress.org/

    There are also plugins specifically to add functionality to bbPress, such as spam control and other neat things:

    Plugins

    Hope that helps.

    #175031
    Stefan S
    Participant

    Hi Paul, I have 3.7.1 and BuddyPress i also updated to the latest version.

    i did use https://translate.wordpress.org/projects/buddypress/dev to download the languagesfiles.
    The languagefile seems to translate everything correct exept just the timestamp.

    Actually I have to sites looking the same. One in Norwegian and one in Swedish – and I have the same problem with both sites.

    Unfortunately Its two internal sites so I cant give you the webadress but Im thankful If you have any ideas how to solve this.

    modemlooper
    Moderator

    BuddyPress hijacks the WordPress loop and replaces content with component content. So, any posts returned are wiped out and replaced

    You could try a custom second loop but there may be issues

    htrev
    Participant

    Just to clarify what’s happening here:

    The search results page I’d like to see is the standard WP one – i.e. showing matching blog posts. This is what happens when the home page is set to show latest posts (in Appearance > Customise > Site front page), which is fine. However my site’s home page is set it to show the default Buddypress Activity page, and now the search results (i.e. a URL of the form http://www.site.com/?s=query) shows matching activity updates. This applies whether I’m using a custom theme or the default Buddypress theme. Is there any way this can be configured so that this page shows matching blog posts instead?

    #175024
    shanebp
    Moderator

    It’s the BP-Default theme that won’t exist.

    re over-riding templates in your theme:
    https://buddypress.org/support/topic/child-theme-structure-for-editing-plugin-files/

    shanebp
    Moderator

    In your child theme, create a folder called ‘buddypress’.
    In that folder, use the same dir structure as bp-legacy and put only the files you want to over-ride the files in bp-legacy.

    In your case, the structure would be:
    your-theme/buddypress/members/single/profile/edit.php
    your-theme/buddypress/members/single/profile/profile-loop.php

    #175017
    BarryB64
    Participant

    Thanks for replying. 🙂

    I like the idea of integrating Social media into the base forum. So, bbpress is the workhorse and takes care of the forum. This would include user groups, permissions, roles and all the other wonderful things associated with forums. While BuddyPress takes care of the social media aspects ala Facebook and Twitter. I’m sure there’s more to it.

    It sounds like Simple:Press is a relative indicator of what those two apps are becoming. Here’s my problem. I need an interface that organizes all the forum related tasks. I’m finding the setup with BuddyPress & bbpress to be a little intimidating.

    I hope the LabZip guys come out with a more current video. I was wanting him to go into better details on all the options for setting up roles, permissions and etc.

    #175015
    Asynaptic
    Participant

    One more thing, you’ll notice that the labsecrets video link is from early 2012 (about 2 years ago) and at that time BuddyPress did have the ability to create its own forums.

    #175014
    Asynaptic
    Participant

    Hi Barry, it sounds like you’re not clear on what bbPress and BuddyPress are exactly. So let me try to clarify it for you.

    bbPress is a plugin for wordpress which provides you with forum functionality. And because it comes from the same folks who created wordpress, it works great with wordpress and other WP plugins.

    BuddyPress is a plugin for wordpress which provides you with a social network functionality. What does that mean? Well, imagine facebook, myspace, or any other social media platform – they have profiles, people can create and fill in their userpages, people can message other people privately, they have an activity page which shows their activity on the site, etc.

    bbPress and BuddyPress are two totally different plugins but they work together and can be integrated with one another. But if you want to use just one of them, you can. You do not need to run both.

    I’ve tracked down the video I think you refer to:
    http://labsecrets.com/buddypress-and-bbpress-forums-made-easy/

    And I can clarify that for you as well. BuddyPress used to have its own way of creating forums, called “BuddyPress Group Forums”. But that functionality is deprecated because the developers decided to rely on bbPress rather than duplicate it within BuddyPress. So the latest version of BuddyPress doesn’t have group forums but instead relies on bbPress.

    It all depends on what you are trying to do. What you are seeing in “the two forum apps merging to become one” is simply a deep integration between them so IF people want to use both, they can do so with ease and get the fullest functionality out of that combination use.

    It sounds like you want a forum. If that is the case, forget about BuddyPress and just use bbPress.

    Hope that helps!

    premiumwebsites
    Participant

    I had the same problem and discovered that the Facebook, Twitter, and Google+ buddypress plugins were conflicting with the email send. When I removed those fields from the register page the emails started to come through again.

    #174992
    glyndavidson
    Participant

    …note: buddypress and bbpress are activated individually on each child blog, and are not network activated.

    I have set “define( ‘BP_ENABLE_MULTIBLOG’, true ); ” in wp-config.php

    #174991
    glyndavidson
    Participant

    Thanks @mercime. Am I right in thinking then, that out of the box, the normal functionality is to have buddypress extended-profile-fields, groups, and member-lists shared across the network?

    I.e. if an admin deletes a group or profile-field from a child-blog, it effects the entire network?

    And, there’s nothing I can do to prevent this without a third party plugin or my own hacks?

    #174986

    In reply to: login form in header

    @mercime
    Participant

    @drgiz upcoming BP 1.9 now includes a BP log in widget. If you’re just starting to develop a new site, check it out at buddypress.1.9-beta1.zip.

    #174985

    In reply to: No Activation email

    Soccercoach12345
    Participant

    @mercime,

    Thank you for the support questions.

    I use the newest versions of both (WP 3.7.1 and BP 1.8.1)

    I am hosted at Hostgator, domain through GoDaddy.

    I have checked, if I deactivate BuddyPress all email work fine.

    #174983
    @mercime
    Participant
Viewing 25 results - 18,051 through 18,075 (of 68,987 total)
Skip to toolbar