Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,151 through 19,175 (of 68,969 total)
  • Author
    Search Results
  • #170837
    danbp
    Participant

    You have nothing to add to bp-custom.php
    If you’re on a local install, verify that the gettext php module is activated.
    If you are on a network install, you have to set your language in WP’s settings
    The translation file path is wp-content/languages/buddypress-sv_SE.mo

    #170832
    kamal.r.php
    Participant

    @modemlooper: yes I got this.
    Thanks

    #170831
    modemlooper
    Moderator

    if you dont have header-buddypress.php file then it falls back to the default header.php

    #170818
    xiot
    Participant

    @hnla

    Hi Hugo, thanks for the advice!

    I tested it out, but still no luck with that. I contacted the Theme creator of the template i’m using, but when i change the post title to not act as a link. The Buddypress Profile Title is still a Link.

    It doesn’t act 100% like a common post title. Within the title it is a normal link. So it catches the CSS for a link, while a normal Post title uses its own styles.

    I checked my code when whatching the site and it shows me the divs it it creating.

    <div id="page-0" class="post-0 bp_members type-bp_members status-publish hentry">
    				
    				<h2 class="page-title"><a href="http://mysite.com/member/admin/">Admin</a></h2>
    

    and so on.

    I can’t find out what I have to change that it’s not a a link anymore.

    Any advice?

    Thanks so far, i really appreciate your help Hugo.

    #170814
    kimz
    Participant

    I’ll check bp_get_current_signup_step(),

    and putting the code on the registration page seems to be a simple and good idea,

    #170813
    Squirrel
    Participant

    Hi

    Thanks @modemlooper I managed to figure it out after trying a few things and your conditional helped me deduce it.

    if ( bp_is_current_component(‘activity’) && !bp_is_user_activity() ) {

    worked for me.
    (redirect if on main activity page but not own activity)

    #170810
    Xevo
    Participant

    Just put the actual code on the registration page?
    You can edit register.php in the theme.

    You could also take a look at bp_get_current_signup_step(), if you want to make it an actual step in the registration process.

    #170809
    kimz
    Participant

    I did something similar,

    I created a db table with the members’ names and numbers,

    and a php form with to field to check the input data with the db table,
    if it’s correct the user is redirected to the registration page,

    but I was lookin for something to integrate between this page and the registration page, like a way to encrypt the link or deal with it as a registration step, you know what I mean? 🙂

    #170807
    Xevo
    Participant

    Maybe you could add a form that shows when a users tries accessing the register page that would require them to enter a security code first before seeing the actual register page.

    Something like

    if(!is_user_logged_in()) {
       if(!$_POST["access"]) {
         -show access form-
       } else {
         -show register page-
       }
    } else {
      -redirect user since he's already logged in-
    }

    (Just a raw sketch)

    #170805
    kimz
    Participant

    Thanks for your contribution @Xevo

    all users are already redirected to the login page if not logged in,

    but I want to allow only the users with the correct name and membership number to access the registration page

    #170804
    Xevo
    Participant

    Just redirect any url towards the register/login page if the user isn’t logged in?

    #170798
    Xevo
    Participant

    Because the forums inside buddypress only work for buddypress groups. If you want a global forum, you will have to install bbPress as well.

    #170794
    becskr
    Participant

    Jetpack->WordPress.com Stats->Configure->Put a chart showing 48 hours of views in the admin bar.

    Then go to Settings->General and see what New User Default Role is set as.
    Anyone other than subscriber will see the stats. You will have to go back and change the subscriber settings for anyone that registers.

    #170793
    kamal.r.php
    Participant

    @roger: I have installed buddypress plugin in my wp site but there is not any header-buddypress.php file exists.

    still header is displaying. which file is used to display header.?

    #170786
    kamal.r.php
    Participant

    Hi I have installed buddypress 1.8.1 but I am not getting forum menu in site.

    how to activate forum in 1.8.1

    #170759
    therandomguy12345
    Participant

    @philipstancil

    @bphelp

    I want to hide specific users from the “(BuddyPress) Recently Active Members” & “(BuddyPress) Members” widgets (latter one is most important for me), but I don’t want these users from the members directory. So what does the below code exactly do? Does it exclude users from members directory or the widgets? Or both?

    <?php
    // Remove admin from directory
    
    add_action('bp_ajax_querystring','bpdev_exclude_users',20,2);
    function bpdev_exclude_users($qs=false,$object=false){
     //list of users to exclude
     
     $excluded_user='1';//comma separated ids of users whom you want to exclude
     
     if($object!='members')//hide for members only
     return $qs;
     
     $args=wp_parse_args($qs);
     
     //check if we are listing friends?, do not exclude in this case
     if(!empty($args['user_id']))
     return $qs;
     
     if(!empty($args['exclude']))
     $args['exclude']=$args['exclude'].','.$excluded_user;
     else
     $args['exclude']=$excluded_user;
     
     $qs=build_query($args);
     
     return $qs;
     
    }
    
    //Remove admin from member count
    
    add_filter('bp_get_total_member_count','bpdev_members_correct_count');
    function bpdev_members_correct_count($count){
    $excluded_users_count=1; //change it to the number of users you want to exclude
    return $count-$excluded_users_count;
    }
    ?>
    #170747
    becskr
    Participant

    Hi Xevo,

    It depends how much you can code.
    You can add one using the bp_core_new_subnav_item() function.
    Let me know if you want more help – you should be able to find more info if you google it.

    This is a good example:
    Add tab to profile

    #170746
    fideldonson
    Participant

    Hi @mercime
    Thanks. – i just downloaded the db via phpmyadmin

    We are running a BP default child theme – would i simply remove it from the theme files?

    How about the link to ‘read more’ for a forum post showing up in the activity stream. Is that also done in the theme files – as opposed to settings?

    Best regards

    sarvesh362
    Participant

    default buddypress theme

    #170743
    modemlooper
    Moderator

    bp_is_profile is used to test if its a profile page. try that in a conditional.

    #170736
    Ben Hansen
    Participant

    Have you tried confirming this behavior on a fresh install? If so i’d put in a trac ticket otherwise you’re probably going to be on your own for that one. It’s possible your import process is the root of the cause.

    #170735
    Ben Hansen
    Participant

    in buddypress settings under Groups Settings and the heading Group Creation un-check the box that says “Enable group creation for all users”

    #170730
    Xevo
    Participant

    I personally think a media option should’ve been in the core since the start. All the plugins that have been made are cool and all, but most of them are really big and bloaty or are premium.

    A simple media option in buddypress which can be added upon by plugins would be a much better way to go in my personal opinion.

    #170725
    valuser
    Participant

    Yes BP Activity Plus works well. Thanks. (sorted a recent hiccup – it was just a silly mistake by me!)

    Possible other options include rtMedia https://wordpress.org/plugins/buddypress-media/ and previously there was buddypics.

    Communication, now, with photos/video etc is just exploding-its now just a huge part of online social interaction.

    While i am truly appreciative of the countless developers and whole open-source eco-system that produces the plugins – sometimes developers, even commercial developers, move on to something else and the particular plugin does not get upgraded or does but months later.

    Technically also as BP Activity Plus puts uploads into its own bpfb folder the links will not persist if the plugin is deactivated.

    For niche functionality perhaps this is not so important but for a major functionality like say photo uploads my two cents is that it might be worthwhile for buddypress (as social interaction is its core) to have it built in. Its just to future proof it.

    Am not talking about 1.82 but say aim for after 1.90

    The p2 theme which i suspect the core devs might use quite a bit is a reasonable functioning template

    (However, all this could be hugely difficult with Buddypress – I just haven’t a clue )

    If it was in my hands (now i really am getting way above myself here) I would add “Add Media” and Map/Location (my p2 example – at http://trulysuperb.com/

    Anyway I will put something up on the trac.

    While i’m here – thank you @mercime for the huge lots of help in this forum and the wp forum over the years.

    #170724
    stuartjbray
    Participant

    Hi, I’m trying to get BuddyPress running, and I can see the activate account page, but I don’t have an activation key. Nothing was sent. How do I re-trigger this?

Viewing 25 results - 19,151 through 19,175 (of 68,969 total)
Skip to toolbar