Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 60,026 through 60,050 (of 68,948 total)
  • Author
    Search Results
  • #58694
    Andy Peatling
    Keymaster

    I’ve just checked the theme in. To answer andrea_r’s question above —

    You will still be able to build themes from bp-sn-parent. That theme is not going away, it will continue to be present for the foreseeable future. I have updated it to be compatible with all the latest BuddyPress changes.

    The new bp-default theme will actually be a parent theme. For the default it makes less sense making a separate parent theme since you can simply just leave out all the default CSS and keep the templates.

    The structure has changed though, and overall is much better and easier to understand. It follows the navigation of the actual site much closer. Plus there is less than half the CSS and only one major CSS file. The JS has also been hugely simplified.

    #58693
    D Cartwright
    Participant

    @Xevo

    I was actually worried that the extra load might cause problems :p I took a break from refreshing the page endlessly and bought a coffee. Installing it now..Woo.

    #58692
    Xevo
    Participant

    I’ll start working on these when the new theme is released, which is soon. The first one I’m doing will be YouGo, Talkmore is gonna take a lot longer so that one will be released later.

    Glad to see so people are interested in my themes. :)

    ps. The buddypress parent revamp is dicontinued since Andy already made a big upgrade on the parent theme.

    #58691
    Xevo
    Participant

    @ D Cartwright: What if you crash the trac before Andy can release the theme? lol :)

    #58690
    D Cartwright
    Participant

    Oohh.. Time to spam F5 on the trac methinks :)

    #58689
    jedbarish
    Participant

    I would like to see Talkmore theme to be released first. Hope to see one of them comes out soon!

    Brajesh Singh
    Participant

    thanks.

    you mean the discussion topics shown at the bottom of the home page.

    well, I am using external bbpress with deep integration to buddypress/wordpress mu.

    The topics are coming from https://wordpress.org/extend/plugins/bbpress-latest-discussion/ plugin.

    Though, if you want to do the same using internal integration

    have a look here

    https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-activity-stream-loop/

    specifying the action as “new_forum _post” should do that.

    Hope it helps :)

    bpisimone
    Participant

    Good to see some new themes published!

    May I ask something slightly off-topic? How did you get this done? I always have problems doing that outside the forums!

    >>Forum Last 5 Discussions

    >>How to change BP forum topic page like a normal forum page? (7) Last Post By: >>mercime Inside: How-To and Troubleshootings

    >>Bp Dev Premium To Be opened soon (1) Last Post By: admin Inside: General >>Discussion/Announcements

    >>Welcome to Buddydev Premium Forum (1) Last Post By: admin Inside: General >>Discussion/Announcements

    #58679
    Brajesh Singh
    Participant

    @mishathegoat

    as DJPaul points, you do not need bp-themes directory inside wp-content ,It will cause problems.

    Please move buddypress/bp-themes/ (bp-sn-parent and bp-default) to wp-content/themes and then go to SiteAdmin->Themes ,allow it from the main site and activate bp=-default using appearance->Themes

    and remember to delete the wp-content/bp-tehems directory.

    #58678
    mishathegoat
    Member

    Hello DJPaul,

    Odd, I am using BuddyPress version 1.1.3

    The installation instructions I read told me to do the following (http://www.tmdhosting.com/tutorials/buddypress/buddypress-installation.html):

    “Move /wp-content/plugins/buddypress/bp-themes/ to /wp-content/bp-themes/ directory of your account. Additionally, to install the default BuddyPress home theme move /wp-content/bp-themes/bphome/ to /wp-content/themes/bphome/.”

    Could this be related to the problem?

    Thanks

    EDIT: I have tried both themes, BuddyPress Default 1.1.3 and BuddyPress Social Network Parent Theme 1.1.3

    #58677
    Paul Wong-Gibbs
    Keymaster

    @fritzthecat As per Andy Peatling’s comment above, this appears to be a bug with the current version of WPMU, not BuddyPress.

    #58676
    Paul Wong-Gibbs
    Keymaster

    http://testbp.org/wp-signup.php is what is meant to happen.

    mishathegoat you appear to be using the old BP theme directory. What version of BuddyPress are you installing and with which theme?

    #58675
    vusis
    Participant

    hey guys please help me figure this post out :(

    https://buddypress.org/forums/topic/restricting-group-creation-to-admins#post-31264

    i think its got to do with what we are talking about above

    #58674
    vusis
    Participant

    have you found a solution for this? i’m desperately looking for this too- i found this post but i cant seem to figure it out.

    https://buddypress.org/forums/topic/restricting-group-creation-to-admins#post-31264

    #58673
    vusis
    Participant

    hey guys i cant seem to figure this one out hey; i’ve tried to patch the bp-groups.php file but i get a

    #1 HUNK Failed at 449 – please see my reject file

    ***************

    *** 453,459 ****

    bp_core_redirect( $bp->loggedin_user->domain . $bp->groups->slug . ‘/create/step/’ . $bp->groups->current_create_step );

    }

    – if ( !$bp->groups->new_group_id = groups_create_group( array( ‘group_id’ => $bp->groups->new_group_id, ‘name’ => $_POST[‘group-name’], ‘description’ => $_POST[‘group-desc’], ‘news’ => $_POST[‘group-news’], ‘slug’ => groups_check_slug( sanitize_title($_POST[‘group-name’]) ), ‘date_created’ => time() ) ) ) {

    bp_core_add_message( __( ‘There was an error saving group details, please try again.’, ‘buddypress’ ), ‘error’ );

    bp_core_redirect( $bp->loggedin_user->domain . $bp->groups->slug . ‘/create/step/’ . $bp->groups->current_create_step );

    }

    — 453,474 —-

    bp_core_redirect( $bp->loggedin_user->domain . $bp->groups->slug . ‘/create/step/’ . $bp->groups->current_create_step );

    }

    + $group_details = array(

    + ‘group_id’ => $bp->groups->new_group_id,

    + ‘name’ => $_POST[‘group-name’],

    + ‘description’ => $_POST[‘group-desc’],

    + ‘news’ => $_POST[‘group-news’],

    + ‘slug’ => groups_check_slug( sanitize_title($_POST[‘group-name’]) ),

    + ‘date_created’ => time() );

    +

    + /* Allow plugins to halt group creation for whatever reason. On doing this the plugin

    + should use the bp_core_add_message function to inform the user why the group creation

    + has failed.

    + N.B. The data passed in $new_group is unsanitised. */

    + if ( ! apply_filters( ‘bp_allow_create_group’, true, $group_details ) )

    + return bp_core_redirect( $bp->loggedin_user->domain . $bp->groups->slug . ‘/create’ );

    +

    + if ( !$bp->groups->new_group_id = groups_create_group( $group_details ) ) {

    bp_core_add_message( __( ‘There was an error saving group details, please try again.’, ‘buddypress’ ), ‘error’ );

    bp_core_redirect( $bp->loggedin_user->domain . $bp->groups->slug . ‘/create/step/’ . $bp->groups->current_create_step );

    }

    i’m not too sure what that means and how it can be fixed? :(

    #58671
    Brajesh Singh
    Participant

    This is a problem with sitewide activated plugins upgrade.

    Please check David’s reply here for a fix.

    https://buddypress.org/forums/topic/buddypress-113-installation-fail-in-bp-activityphp#post-30142

    Hope it helps.

    Brajesh Singh
    Participant

    hi Xevo

    Thanks for pointing.

    I had mentioned that in one of the comment already on the blog about the graphics.

    The login will work, once you add the login widget supplied with the theme(cb-addons), please have a look at my recommendation about widget use there.

    There are a few more things ,I am aware and will be updated by Wednesday(when my designer comes tomorrow). I had promised the theme long ago, and since designer was away, so I had to go for a hurried release.

    Other than graphics(transparency issue with title background ), please point to other things too, I will be glad to enhance more :)

    Thanks

    Brajesh

    Xevo
    Participant

    Good to know that people are finally starting to make quality themes. :)

    Some things that I noticed.

    See this. Make the backgrounds transparent.

    – Define a width for your input, my inputs always become bigger and stick out their container. Probably got something to do with Win7.

    – Blog pages still have a meta box.

    – Login link in the navigation doesn’t do anything.

    Haven’t found anything other than that.

    #58667
    Xevo
    Participant

    Here’s a fix for redirecting your users from the old wpmu signup/activation to the new buddypress signup/acitvation page.

    http://mirlo.cl/how-to/fix-for-signup-and-activation-pages/

    #58662
    Jeff Sayre
    Participant

    It is a known problem. Hopefully, it will be corrected soon.

    https://buddypress.org/forums/topic/httpcodexbuddypressorg-is-dead

    #58656
    dwpers
    Participant

    I’m interested in this fix as well, but don’t quite understand how to put together bp_get_loggedin_user_link() and is_user_logged_in() to make a link to the members profile page.

    I’m using the sidebar login widget and when you click profile on the sidebar once logged in, it goes to the WP profile page on the backend, not the buddypress profile.

    Is there a way to use your above method to patch this somehow? I figured this was how it was supposed to be but I did something wrong? Thanks :)

    #58655
    Mark
    Participant

    I posted this elsewhere but it now belongs as part of this discussion: When using Buddypress, should /wp-signup.php result in an blank page or the registration form (or redirect to /register)? If the issue described here exists, how do you get the proper default buddypress behavior?

    see: http://ttacconnect.org/wp-signup.php

    I could delete /wp-signup to remove the errors but I’d like to understand how bp and wpmu is designed to work (are there any consequences for deleting wp-signup.php?).

    I know BuddyPress is using /register.php and not /wp-signup.php. But when /wp-signup.php is hit (typically by spam bots) a PHP Warning is generated. No white space outside of php closing tags in header.php. I’m not too concerned about that as I figure if it’s working as it should (no registration form), then the php warning will take care of itself (and not be generated). So what needs to change to get /wp-signup.php to result in a blank page?

    PHP Warning: Cannot modify header information – headers already sent by (output started at xxxx/bp-sn-parent/header.php:3) in xxxx/wp-includes/pluggable.php on line 865

    See no Warning and no Registration Form (blank page). Is this the proper default buddypress/wpmu behavior?

    http://nourishnetwork.com/wp-signup.php

    Here /wp-signup.php was deleted and results in a page not found:

    http://memomu.com/wp-signup.php

    wpmu 2.8.6 with active plugins on main bp site:

    bp 1.1.3, bp-groupblog, auto group join, Group Forum Subscripton, bad behavior

    #58654
    mishathegoat
    Member

    @Xevo Thanks so much for the response! How do I use register instead of wp-signup?

    Also forgot to mention that I’m using the latest versions of both WordPress and Buddypress

    #58649
    Paul Wong-Gibbs
    Keymaster
    #58647
    D Cartwright
    Participant

    Sounds promising Erich73…

    I am more than happy with it not being ‘stable’ until late January/early February. I can deal with revisions and such in the meantime :)

Viewing 25 results - 60,026 through 60,050 (of 68,948 total)
Skip to toolbar