Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 15,801 through 15,825 (of 69,016 total)
  • Author
    Search Results
  • #189021
    danbp
    Participant

    @alraj101,

    remember that you are on a buddypress support, not a divi or any other theme support.
    If your install is working correctly with 2014 and not with divi, it is not a buddypress issue, but a theme issue.

    Likewise, you use a premium theme and it’s just impossible for us to help you on this point, as we have no access to such theme. And you probably can understand that we cannot buy them, just in case of to help some users. Premium themes generally include support in the licence.

    So please take contact with the author.

    You can also search the forum. I am certain that you can figure this out in a sec. Too.

    #189011
    danbp
    Participant

    @sokrates,

    the ticket is fixed and closed since 19 mounth.
    If you follow the last IRC discussion around this ticket – 7 mounth ago – you’ll see that the issue cames again, and a new fix was added.

    Also from IRC, test this setting.

    Anyway, if you think the issue is still there, feel free to open a new ticket and give the steps to reproduce. Follow Boone’s instructions

    Login to Trac use the same credentials as bp.org forum.

    #189009
    Sokrates
    Participant

    In fact it sounds like this issue from 3 yrs ago: https://buddypress.trac.wordpress.org/ticket/3725

    #189000
    Juan M. Gonzalez
    Participant

    I had this same error, “There was a problem cropping your avatar”. After trying many things, what finally worked was installing php5-gd and do a restart.

    On Debian:

    apt-get install php5-gd

    After this, usually people restart Apache server. But in this case there was Nginx server instead, and restarting it wasn’t enough. A PHP restart was needed.

    So, I went to Webmin control panel to restart the Nginx PHP fcgi server:

    System > Bootup and Shutdown > php-fcgi-…

    And avatar cropping started to work for BuddyPress groups, profiles…

    #188997
    shanebp
    Moderator

    It might be part of the 2.1 release, but more likely the 2.2 release.
    https://buddypress.trac.wordpress.org/ticket/4017#comment:15

    #188996
    danbp
    Participant

    @sokrates,

    thank you for your reply!
    You found a solution with a third party plugin. Glad it works for you, but it doesn’t really help BP users encountering the issue discribed by @solutionstriwareca. An issue which is, as @mercime said, “never seen before”. In other words unknown.

    Let’s try to stay on a buddypress pov first, before searching workarounds.

    #188992
    Sokrates
    Participant

    Hi, Just in case it’s of use….

    I’m a bit of a BP newb, and I’m using a fresh install of WP 3.9.2 and BP 2.0.1

    I’m using a Gravity form as a registration form with the GravityForms User Registration add-on to register BuddyPress users.

    As a newb, I have been experimenting a lot with the XProfile fields, and also noticed that at some stage of the proceedings, I had made a change that resulted in the same problem as in the first post – the WordPress last name value was deleted and the firstname field was set to the nicename when the update profile button was pressed.

    I had changed the primary field in the XProfile fields from “Name”.

    Replacing the primary field as Name, and mapping the “full name” field from the Gravity form to this field in the Gravity User Registration add-on screen seems to solve it for me

    #188914
    colabsadmin
    Participant

    @shanebp Figured out the problem. I have the Buddypress Xprofile Custom Field Type plugin installed. Disabling that allowed the creation of the time zone options.

    #188907

    In reply to: Example sites

    peter-hamilton
    Participant

    BBPress is great, you can make it just like any other forum, just needs a bit more time invested.

    Right now I am working on a BuddyPress forum/theme you can have a look at: BBFacelook

    #188893
    danbp
    Participant

    hi @igid26,

    FB’s share button on a buddyPress profile is very simple to use.
    You have only to provide the profile URL, not the whole profile header.
    https://developers.facebook.com/docs/plugins/share-button

    The code could be something like this (not tested, not sure if you need also a API key, or some urlencoding)

    <a href="https://www.facebook.com/sharer/sharer.php?u=http://example.com/members/zuzana/">Share on Facebook</a>

    The picture cannot fit as you use bp_displayed_user_avatar( ‘type=full’ ) which is by default 150x150px. And FB’s code you entered is 550×550 !

    To add some extra code in the header profile, you can do this with a function in a child theme functions.php instead of hardcoding the template. And another great advantage, if you use bp-custom.php, you will be totally theme independant.

    function zuzanna_share_button() {
    ?>
    	<a href="https://www.facebook.com/sharer/sharer.php?u=<?php bp_displayed_user_link(); ?>">Share on Facebook</a>
    <?php
    }
    add_action( 'bp_before_member_header_meta', 'zuzanna_share_button' );
    #188891
    dolliv
    Participant

    I’ve came across this plugin on my search, but that’s only in checkbox form… Any chance of getting that in dropdown form?

    #188883
    danbp
    Participant

    hi @fumow,

    here is a way to color any group activity on the site activity.
    Group A is red, Group B is green.

    The function use the group ID and add a class to the existing. You can modify it in your child theme style.css file

    Function can be installed in functions.php or bp-custom.php

    function fumow_li_class_group_id( $class = '' ) {
    	global $activities_template;
    	
    	// the group id in case of an activity in group component is the field item_id
    	if ( buddypress()->groups->id == $activities_template->activity->component ) {
    		$class .= ' rj-' . $activities_template->activity->item_id;
    	}	
    	return $class;
    }
    add_filter( 'bp_get_activity_css_class', 'fumow_li_class_group_id', 10, 1 );

    You have to create a css class for each group. The example use group ID 13 and 9

    li.groups.activity-item.rj-13 {
    	background-color: #FFD5F4;
    }
    
    li.groups.activity-item.rj-9 {
    	background-color: #be4;
    }
    

    References:

    Activity Loop


    bp-activity-templatetags.php

    May this help !

    #188881
    Bruce
    Participant

    Thanks, but I have one correction for those not familiar with php. Delete the comment “//” marks just before the “if” statement, or you come up with no list at all.

    So <?php //if ( bp_has_members( bp_ajax_querystring( ‘members’ ) . ‘&type=alphabetical’ ) ) : ?>

    Should be:

    <?php if ( bp_has_members( bp_ajax_querystring( ‘members’ ) . ‘&type=alphabetical’ ) ) : ?>

    Thanks again. This was very helpful, especially the instruction to put the buddypress code in the child theme folder.

    DarkPsy
    Participant

    It’s one of those I just have to grind it out I guess. I’m not worried at all about the PHP Notices, that’s fine. The absolutely amazing behavior where the current_avatar function stops working even on a clean install is spooky. I’ll post something if I do make a break through , which seems unlikely right now.

    Workaround: bbp_current_user_avatar fetches the gravtar link associated with an email.
    At signup I have another custom field which forces the user to upload an avatar and then I replace all avatar references to the user defined profile image.

    You could do this with custom fields or a plugin like ‘Buddypress upload avatar ajax’ and then just retrieve the value from the $user.

    Anyway you won’t have a website which relies solely on gravatars to begin with.

    Until then I’ll stick to this, thanks again Dan for your patience. Cheers!

    #188858

    In reply to: Buddypress not Working

    Hugo Ashmore
    Participant

    @bucobill You have a different issue from that of the original posters, it’s for this reason amongst others that stepping into a running thread that wasn’t started by you with what is assumed the same issue is frowned upon and discouraged, multiple responses to different posters and issues in the same thread can not be supported. You must start your own thread on your particular issues. As a start point for your issue, looking at your url suggests you are on IIS or non standard apache type server running mod_rewrite head over to the WP codex and search on permalinks for some guidance on setting permalink structures under IIS.


    @samchozx
    Likely your theme does something odd and non standard with page.php which BP needs to use to inject it’s content into, the_content() function must run through as normal in this file, you probably need to create a buddypress directory in your theme(as a child theme) and then copy page.php renaming it to buddypress.php and copied to the root of this new bp directory, that file then needs to retain the themes specific markup but properly use the ‘the_title()’ & the_content()’ functions. Please check the BP codex for guides on this process of overloading files, editing the actual file may require some help from the theme authors.

    #188857
    danbp
    Participant

    It seems to focus on Members random page.

    Ya, but only seems. The codex is not a ready-to-use answer to any kind of problematic or the solution for anything, but a guide who explains how things can/should be done with BuddyPress.
    That’s why you’ll find essentially examples who can be used to extend or achieve your projects.

    Codex pages are written by volonteers (like you tomorrow ?), and none of them is able to know or to write about any given issue, situation, need.

    It certainly would be an awesome codex, if every BP user would share some snipppet or simply some experience, by adding his personnal how-to…

    Hold on ! You have to try, experiment and realize yourself. The other face of freedom and open source, i guess

    If you have questions, do not hesitate. Like the codex, this forum is yours. 😉

    #188856
    Henry Wright
    Moderator

    Thanks for your feedback @00mark. The buddypress.org site was actually open sourced back in the spring so you can now checkout, review, and patch the code yourself (if you want to). 🙂

    Ref: https://buddypress.org/2014/03/open-sourcing-buddypress-org/

    #188855

    In reply to: Example sites

    Henry Wright
    Moderator

    Also, take a look at the Your BuddyPress forum for links shared by the community.

    #188848
    danbp
    Participant

    hi @jjnw,

    random order is not avaible for the activity stream.

    But it can be added as explained here 😉

    #188846
    danbp
    Participant

    hi @peti446,

    Sorry, this is not clear:

    to send buddypress information to register it then

    Do you want to make a register page ?

    The register template is here: /buddyress/bp-templates/bp-legacy/members/register.php

    Register and Activation Pages


    Other information about registering are on the WP codex.

    #188844
    danbp
    Participant

    Hi @techfundz,,

    All BP text is referenced in bp-languages/buddypress.pot, like this:

    #: bp-templates/bp-legacy/buddypress/activity/post-form.php:23
    #: bp-themes/bp-default/activity/post-form.php:23
    msgid "What's new in %s, %s?"
    msgstr ""

    To modify text:

    Customizing Labels, Messages, and URLs


    or directly in the code via a child theme

    #188841

    In reply to: Buddypress not Working

    Bucobill
    Participant

    OK. I have the same issue as quite a few users. I went to the themes area and activated Twenty Fourteen. It still doesn’t work. I changed to Anyone Can Register, still doesn’t work. Added an htaccess.txt file with the WP code found on the wordpress site. Overall I spent the better part of the day with issues. I cannot access the register page, it is using blurbble/register even though I set the Permalink to Postname like http://blurbble.com/index.php/sample-post/ . I uninstalled and reinstalled buddypress and still nothing. If any help could be given it would be appreciated.

    #188836
    shanebp
    Moderator

    There is no built-in way at the moment, but there are efforts to do so in the future.
    More info:

    New Plugin Adds Taxonomies to BuddyPress Groups

    #188803
    danbp
    Participant

    @evilben,

    go to dashboard > users > profile fields.
    Required field on registration form should be added to the NAME field group.
    There is a date field type for birthdates. Set it to required, viewable by everyone

    For the TOS read here

    Another solution here (not tested)

    #188802
    danbp
    Participant

    Hi @yamaryam,

    What is recommended ? No clue ! Don’t make mistake ? Don’t forget the milk bottle ? 😉

    The theory

    1) install / configure WordPress
    2) activate 2014 theme
    3) checking every thing is ok
    4) activate network
    5) checking every thing is ok
    6) install / configure BuddyPress
    7) checking every thing is ok
    8) enjoy your dashboard: one for the main site and one for the network
    9) don’t forget the milk bottle

    Headache ?

Viewing 25 results - 15,801 through 15,825 (of 69,016 total)
Skip to toolbar