Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 58,051 through 58,075 (of 94,540 total)
  • Author
    Search Results
  • #21566
    drizzuti
    Member

    hi, im using buddypress (latest version) and bbpress.
    the problem is:
    when i use “sticky topic” “close topic” & “delete topic” y have a white page,
    what’s the problem?
    can someone help?
    thanks you!!!

    #110991
    Virtuali
    Participant

    Do you want to take your question over to WPMU? You can pay for a response over there. :D

    #110990
    Timothy Tarmon Jr
    Participant

    wow i asked this question 4 months ago…. and no response.

    Good thing i figured this out on my own..

    #110986
    aces
    Participant

    my-columns will have it’s own style.css (as it is a clone of bp columns which has one) and that is where you change the font sizes and colours etc. It will overwrite the css in buddypress default theme. So you could change the font size by writing
    `body {
    font-size: 14px;
    }`
    in the my columns style.css file….

    You can quite often see what needs to be changed using developer tools built into ie8 or firebug in firefox (and equivalents for other browsers). Firebug has a neat trick of being able to show changes as you make them….

    As you are creating a child of bp default your changes won’t be lost when bp default is upgraded… bp columns is now a different theme and if it is upgraded you would need to compare the changes manually…

    I actually used this method with bp columns to create the child of bp default I used here

    You might also find https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/ useful if you haven’t already seen it!

    #110980
    Brandon Allen
    Participant

    Nope. Just make the changes @aces gave you, and you’ll be ready to edit how you please :) You’ll only to change the css in your new my_columns theme.

    #110973
    Brandon Allen
    Participant

    This would take some code work, because neither bbPress or BuddyPress store this information. You would need to hook into ‘groups_edit_forum_post’ and the use bb_update_postmeta() and bb_get_postmeta() to save/retrieve the information. The following will get you started:

    `my_update_forum_post_last_edited( $post_id ) {
    global $bp;

    do_action( ‘bbpress_init’ );

    $post_id = (int) $post_id;

    if ( empty( $post_id ) )
    return;

    bb_update_postmeta( $post_meta, ‘last_edited_date’, bp_core_current_time() );
    bb_update_postmeta( $post_meta, ‘last_edited_user’, $bp->loggedin_user->id );
    }
    add_action( ‘groups_edit_forum_post’, ‘my_update_post_lasted_edited’ );

    function my_display_forum_post_last_edited() {
    do_action( ‘bbpress_init’ );

    $last_edited_user = bb_get_postmeta( bp_get_the_topic_post_id(), ‘last_edited_user’ );
    $last_edited_date = bb_get_postmeta( bp_get_the_topic_post_id(), ‘last_edited_date’ );

    if ( empty( $last_edited_user ) || empty( $last_edited_date ) )
    return;

    echo ‘Last edited by ‘ . bp_core_get_user_display_name( $last_edited_user ) . ‘ on ‘ . bp_format_time( $last_edited_date ) . ‘ ‘;
    }
    add_action( ‘bp_group_forum_post_meta’, ‘my_display_forum_post_last_edited’ );`

    #110972
    r-a-y
    Keymaster
    lselwd
    Member

    I can login from wordpress with janrain controls eg google, well i do not see in buddypress login div such janrain controls?

    http://polisindex.com/ no here
    http://polisindex.com/wp-login.php yes here only login div

    BTW How stop search engines logins? The below email is it such?
    subject::: [Polis Town Index & Social Network] New User Registration
    New user registration on your site Polis Town Index & Social Network:

    Username: ogelio119121532

    E-mail: ogelio119121532@emailworldwide.info

    please answer asap

    #110966
    Brandon Allen
    Participant

    Could you post a bug report on Trac for this? Reference this topic. You can use the same username/password as you did to log in here. http://trac.buddypress.org

    #110964
    hanheg
    Member

    Aha just found a solution from Cindy Otty hanging around in Google cache, see below.
    It’s only on line 40 instead of line 25 in bp_core_settings now.

    —- solution—-

    Okies, this problem is now fixed! Half of my issue was I forgot to turn on error display in php.ini so I could actually see if there were any. (Duh.)

    So, when I did, voila!

    Warning: require_once(wp-includes/registration.php) [function.require-once]: failed to open stream: No such file or directory in /home/blahblah/public_html/wp-content/plugins/buddypress/bp-core/bp-core-settings.php on line 25

    Fatal error: require_once() [function.require]: Failed opening required ‘wp-includes/registration.php’ (include_path=’/home/blahblah/public_html/includes’) in /home/blahblah/public_html/wp-content/plugins/buddypress/bp-core/bp-core-settings.php on line 25

    So, I opened up bp-core-settings.php and took a peek at line 25 to see why it wasn’t including what it was supposed to be and the line says:

    require_once( WPINC . ‘/registration.php’ );

    So I changed it to:

    require_once( ABSPATH . WPINC . ‘/registration.php’ );

    And now things are running perfectly. Yay!

    #110958
    jzvestor
    Member

    I just found the same error! I cannot send messages to users with a dash in their username. The error I am getting is when I try to select that user as the recipient, it shows there name but then also the following errors IN the dropdown:

    Warning: Cannot modify header information – headers already sent by (output started at /home/tr0421or/public_html/wordpress/wp-content/plugins/genesis-connect/lib/ajax.php:541) in /home/tr0421or/public_html/wordpress/wp-content/plugins/buddypress/bp-messages.php on line 556

    Warning: Cannot modify header information – headers already sent by (output started at /home/tr0421or/public_html/wordpress/wp-content/plugins/genesis-connect/lib/ajax.php:541) in /home/tr0421or/public_html/wordpress/wp-content/plugins/buddypress/bp-messages.php on line 557

    Warning: Cannot modify header information – headers already sent by (output started at /home/tr0421or/public_html/wordpress/wp-content/plugins/genesis-connect/lib/ajax.php:541) in /home/tr0421or/public_html/wordpress/wp-content/plugins/buddypress/bp-messages.php on line 558

    I get the same error for other users but message will go thru.

    are you using genesis connect by any chance? I have a post in to them about it…

    #110956
    r-a-y
    Keymaster
    #110950
    Menelik Seth
    Member

    I’m still new to BuddyPress, so this may not be the best approach, but here’s what I’ve done:

    1. Copy bp-default > groups > index.php into your own child-theme (make sure you keep the same directory structure)
    2. Open the newly copied groups > index.php that is located in your child-theme
    3. Find: “
    4. Edit it by adding is_super_admin() to the if expression so it’s “ This is to check to see if user is logged in AND is a super_admin. If true then display the “create group button” if false then don’t.

    #21562
    music_mag
    Member

    Hi everyone,

    I am trying to install BP on my site http://www.themusicmagazine.co.uk – I have used the template pack on my existing theme to make it compatible. However, I am stuck at the infamous ”Stage 3” – alignment.

    The issue is my sidebar is showing up beneath my content on the BP pages. I realise I have to adjust the buddypress templates to fit my theme, but I have no idea really how to do this. This is a copy of my page.php if this helps – http://pastebin.com/5scCaSSr

    Any help would be very much appreciated!

    #21555
    dwwilkin
    Member

    Is there any plug-in or way to set up the buddypress/bbpress forum so that it emulates what other typical forums do. Allow the creation of a topic, and then sub topic folders within the topic?

    Can you set up such a system so that there is a global forum with sub forums that all members to your site can access, and then members of your site with like interests can set-up their own groups and create their own forums with topics and sub-topic management. (I believe from what I have seen, Buddypress wants to have these subsets of the membership come together to create groups that form one topic forum threads that do not allow the threads to be grouped together in folders.)

    #110922
    diesel9a1
    Member

    I am having lots of problems, first noticed that I couldn’t upload a personal avatar, then noticed:
    – unable to create a group
    – unable to upload new group avatars
    – unable to post replies to my forum
    – unable to post new topics on forum

    Before I noticed any of the above, I did successfully:
    – create a default group
    – create one post to the forum
    – upload images and insert them into a page

    It is a new MU site with blogs as sub dirs. I’ve not really lost anything if I start over again, but it would be nice to figure out what is causing it.
    I’ve looked at file and folder ownership on the server and all are owned by the domain name. All chmodded to 755 for folders and did try to change to 777 then test, but no joy so put back to 755.

    Any thoughts?

    #110921
    Jonas
    Participant

    I had the same problem when upgrading buddypress docs by Boone. I had to deactivate it to get my comments back in the activity feed

    #21552
    daveng64
    Member

    Hi, I’m a 65 yr old newbie here so please bear with me as I stumble along a bit. I’m setting up a Buddypress site for my seniors community. I installed the default BP theme then I installed the BP Columns child theme. My question is ~ Do I make a copy of just the default BP theme for future upgrades or should I make a copy of both the BP Default and BP column themes? I am going to change just a few things in the CSS files (font size & color) etc, so it is easier to read..I know this is probably a really simple question to answer but I am a long way from knowing what I am doing. Thanks

    icypopsicle
    Member

    bump

    #110915
    Tammie Lister
    Moderator

    TIs me :) Love to see it pass and trying out the next version.

    astromono
    Participant

    Good morning!

    I’m having a hard time uploading avatars to my BP install as a user. I tried creating a dummy test account and uploading an avatar, but I got this error when I tried:

    “Upload Failed! Error was: Unable to create directory /var/www/wp-content/blogs.dir/10/files/avatars/signups/818. Is its parent directory writable by the server?”

    I tried checking through the forms here and on wordpress.org (it’s been replicated plenty), but haven’t found an answer.

    I’m running WP 3.1.1 on a multisite with subdomains. Buddypress 1.2.8 is installed on a subdomain called http://saril.astromono.com.

    I tried checking permissions for the folders in the subdomain install and even went as far as to put all the directories within blogs.dir on 777, but that didn’t work. I am, however able to upload media to a blog post and it will display properly. Seems the issue is only related to the directory where avatars are stored.

    Any help anyone can provide is much appreciated!

    #110914
    astromono
    Participant

    Nope, not on a child theme or the bp-default.

    I’m running Buddypress on a multisite install with subdomains. My main domain is http://www.astromono.com and i have two other subdomains: comic.astromono.com (with comicpress) and saril.astromono.com (with buddypress). When I try to edit the theme that’s on the main domain, I go to Network Admin, look for the theme and then try to edit the main php template (index.php).

    Before I installed Buddypress, I got access to the main php template just fine, but now when I try to edit it, I get the Buddypress main php template instead of the one that comes with my theme. This issue was happening before I installed and used the BP Template Pack in order to make my theme compatible with BP.

    #110912
    Menelik Seth
    Member

    I found something close with the default theme’s activity page. Still searching for the tags, though. I totally accidentally the buddypress theme

    #21546
    mojoey
    Member

    I have the visitors map plugin but really would like a members only map for my community. It seems buddypress maps is no longer being supported, so glocate.me is our best option. However they’ve temporarily suspended new subscriptions for some reason.

    Does anyone have a subscription that they would like to sell?

    Thanks,
    Joey

    #21545
    mojoey
    Member

    Users are getting error “upload only JPG, GIF, PNG” even though they are uploading JPGs.

    I made sure the GD library of php was installed.

    I added MIME extensions with all capital letters for image/jpeg (JPEG, JPE, JPG), image/gif (GIF), and image/png (PNG). Bluehost says that I need to make sure Buddypress is recognizing those capital-letter MIME extensions as well.

    Can someone please tell me what to edit and/or what else may be causing this image uploading problem?

Viewing 25 results - 58,051 through 58,075 (of 94,540 total)
Skip to toolbar