Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 23 replies - 1 through 23 (of 23 total)

  • TimCarey
    Participant

    @timcarey

    I’m also very eager For buddy press 7.1 .
    What’s the easiest way to become involved in volunteering For Buddypress development ?


    TimCarey
    Participant

    @timcarey

    I narrowed down the problem and but I’m not sure why it is a problem or why my solution works or if my solution is even a good one. Please advise.

    The following is the problem in the problem code above
    `
    bp_core_redirect( $path . *$bp->bp_options_nav[$bp->groups->current_group->slug]. ‘/’ );
    `

    And the following is how I fixed it. Is the following something that is bad that I did? And also is there something wrong with how the above function works bp_core_redirect.
    `
    bp_core_redirect( $path . ‘frontpage’ . ‘/’ );
    `


    TimCarey
    Participant

    @timcarey

    Before buddy press 1.5 I was using the following function with success.
    `

    function tac_redirect_to_frontpage() {
    global $bp;

    $path = clean_url( $_SERVER );

    $path = apply_filters( ‘bp_uri’, $path );

    if ( bp_is_group_home() && strpos( $path, $bp->bp_options_nav ) === false )
    bp_core_redirect( $path . $bp->bp_options_nav . ‘/’ );
    }
    add_action( ‘wp’, ‘tac_redirect_to_frontpage’ );
    `
    I really don’t know exactly what it was doing, but With buddy press 1.5 it stopped working.

    `
    function tac_redirect_to_frontpage() {
    global $bp;

    $path = clean_url( $_SERVER );

    $path = apply_filters( ‘bp_uri’, $path );

    if ( bp_is_group_home() && strpos( $path, $bp->bp_options_nav[$bp->groups->current_group->slug] ) === false )
    bp_core_redirect( $path . $bp->bp_options_nav[$bp->groups->current_group->slug] . ‘/’ );
    }
    add_action( ‘wp’, ‘tac_redirect_to_frontpage’,1 );
    `
    All this does is cause the browser to keep loading until it decides there is no page. I’d tried echoing the path variable up above in to the group header and it showed correctly I’d tried echoing the following and it showed nothing.

    `
    $bp->bp_options_nav[$bp->groups->current_group->slug] )
    `

    I could really use any help. @djpaul, or any one


    TimCarey
    Participant

    @timcarey

    OK. Plus how would that work for a plug in. I’m trying to redirect to a certain tab on the group. Using the plug in.
    I wouldn’t want to have the users of my plug in and go into their config to set up to have my plug in work correctly. This plug in is called BP Group frontpage because it comes up in front or as the first tab


    TimCarey
    Participant

    @timcarey

    Also I don’t find my list of people that I follow


    TimCarey
    Participant

    @timcarey

    I have a similar problem but this involves my plug in I created it so that my tab shows up first when someone goes to a group. Since the newest buddy press 1.5 everything goes to a home of the group instead. Despite my redirect in my code. Also I had code to rename some of the tabs. Any idea any one please.


    TimCarey
    Participant

    @timcarey

    Never mind I solved it


    TimCarey
    Participant

    @timcarey

    Would you know how to do this for the group-header? I would like the group-header too be nonexistent during a certain condition. But I like to do this in my plug in.


    TimCarey
    Participant

    @timcarey

    I tried to use the admin Perma link and then explode it. And then use the last array element that it didn’t work.


    TimCarey
    Participant

    @timcarey

    Try this.

    function redirect_to_forum() {
    global $bp;
    
    $path = clean_url( $_SERVER );
    
    $path = apply_filters( 'bp_uri', $path );
    
    if ( bp_is_group_home() && strpos( $path, $bp->bp_options_nav ) === false )
    bp_core_redirect( $path . $bp->bp_options_nav . '/' );
    }
    add_action( 'wp', 'redirect_to_forum' );
    

    TimCarey
    Participant

    @timcarey

    Yes this works great.
    function redirect_to_forum() {
    global $bp;

    $path = clean_url( $_SERVER );

    $path = apply_filters( ‘bp_uri’, $path );

    if ( bp_is_group_home() && strpos( $path, $bp->bp_options_nav ) === false )
    bp_core_redirect( $path . $bp->bp_options_nav . ‘/’ );
    }
    add_action( ‘wp’, ‘redirect_to_forum’ );


    TimCarey
    Participant

    @timcarey

    I’m working on one that would have a frontpage. Anyone know how to change your order of group tabs?


    TimCarey
    Participant

    @timcarey

    I turned this code into a plug in.


    TimCarey
    Participant

    @timcarey

    I have knowledge of pHP where do I start. I want to add another page to the group. And I want it to come out default. Over home, but still have the home there.
    Would like to add a screen or add to to this settings when a member runs through group creation. This would be a form I would setup with fields that would inform me what type of information they want on that one added page. I can handle processing the information to display correctly. I’m just not sure what I need to add or possible about the whole thing. I was thinking of creating a plug in for this.


    TimCarey
    Participant

    @timcarey

    I would like to do something similar, but I would like to remove the group activity on the group’s main page. With a forum I don’t see why I need it. Also would like to make the group owners able to make a full home page of their group with banner and such. I thought I could use the forms under their profile to take in the data that they want on their page like the links or banner heading and description and other items. Like contact list ect. If at all possible this form creation could be on the settings button so a dozen have to be on their profile and they would be able to create more groups than one. On the group creation there would be the form and they can go back to change also. And it would be great to have this in the plugin instead of editing my child theme pages.


    TimCarey
    Participant

    @timcarey

    This BuddyPress Group email subscription plugin works great with the newest version of buddy press.
    Also why do we need group comments when there is a form ? How do I replaced the group comments with other page elements of that people can better explain their groups and even have links on their groups


    TimCarey
    Participant

    @timcarey

    I basically set up the WordPress Network now but I unchecked the option in super admin this said register and a blog and checked the mark that was for register only. I run and advocacy website for people with disabilities. I would like each person who wants to advocate for a disability issue to be able to create one. And of course others to be able to see. It would include a banner if they have one. To below do have links and to be able to add them without knowing the code. Just paste a link in. And then be able to do everything groups can. Maybe have the check box for each user to create a new regular group or new advocacy group. Or maybe I could this have just the group’s transformed into disability groups or something without having the choice.
    Kind of like a group face page or frontpage. Instead of the group comments being on front this face page could be one large page.
    Can anyone help me.


    TimCarey
    Participant

    @timcarey

    I don’t quite understand


    TimCarey
    Participant

    @timcarey

    Do I need to have the network and super admin with buddy press. I didn’t because I don’t want individual blogs. Is there another way to deactivate blogs? And above the mention something called thesis. What is that? I have a test site and everything seems to be working great. And but it is network activated. My production site has everything installed correctly except the network is not activated. But this production site doesn’t send a activation emails. If I had network activated, how do I deactivate blogs? I also wonder about having group pages. Something that can explain the group in the march larger page. And then have all the other group pages be subordinate.


    TimCarey
    Participant

    @timcarey

    This plug in doesn’t seem to be working. It looks like it was designed for the mu plug in. WordPress now includes MU in their latest version. Maybe that’s why it doesn’t work. It doesn’t work with buddy press anyway. When people go to be verified from an e-mailed link it goes to a login instead. And then that user isn’t a user at all. Any other ideas


    TimCarey
    Participant

    @timcarey

    Isn’t that what groups the kind of like


    TimCarey
    Participant

    @timcarey

    Email Problem Fixed:
    I seem to have fixed the e-mail verifications not sending. My host is hostmonster which I believe it is a bluemount (blue something anyway). I installed mail form and network activated it. This fall the whole problem. You can find this plug in at the following link.
    https://wordpress.org/extend/plugins/mail-from/


    TimCarey
    Participant

    @timcarey

    Every time I deactivate BuddyPress plug in e-mail start getting sent again for new users and a new blog sites from multisite. When I activate and BuddyPress plug in again they don’t get sand. It must be something with buddy press plug in.
    What is BuddyPress doing to emails to send them now and differently.

Viewing 23 replies - 1 through 23 (of 23 total)
Skip to toolbar