Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 11,726 through 11,750 (of 69,126 total)
  • Author
    Search Results
  • #246317
    Ryan Bickett
    Participant

    @shanebp – Thanks for the suggestion!

    Rewrite it as a BuddyPress component. Make it part of the member profile.

    By this do you mean to write my Custom Post Type as a plugin for Buddypress?

    Or can you point me to any available documentation that I could follow to create a “Buddypress component”?

    #246316
    shanebp
    Moderator

    No need to use multisite. It will create more problems than it solves.

    I have already built the CPT as a plugin.

    Rewrite it as a BuddyPress component. Make it part of the member profile.

    #246305

    In reply to: Custom Hook Help

    shanebp
    Moderator

    After you register a user, do you see a message that starts with You have successfully created your account! ?

    If you do, your function should work.

    You could try putting it in the theme/functions.php

    Putting code directly into a template is okay if you create a template overload.

    #246289
    Andrew
    Participant

    I can set the size and default image from that article, but I’m still not sure how to display it in an img tag.

    With the WordPress header image, you can display the admin header image in an img tag:

    <img src="<?php header_image(); ?>" />

    Is there a Buddypress equivalent for the WordPress function header_image() ?
    https://codex.wordpress.org/Function_Reference/header_image

    #246271
    Henry Wright
    Moderator

    There are a number of ways to install BuddyPress in your network. Can you describe your set up?

    See the Installation in WordPress Multisite article for more info.

    #246268
    nicolemb
    Participant

    Thanks @shanebp. We tried this and a few other hooks and still have not been able to get the appropriate activity on the stream.

    It does seem like the issue with this mu-plugin solution is that not every bit of activity is getting assigned the site id in the meta data. So the filter ends up filtering out most of the activity we should see. Ultimately we are seeking a way to limit activity stream data to the site you are visiting without using multi-network plugins.

    We have a wordpress multisite network with buddypress NOT network activated but only activated on specific subsites.

    Do you or anyone have any suggestions on how to achieve our goals?

    shanebp
    Moderator

    The right way is to use a template overload.

    #246261
    shanebp
    Moderator

    I’m not aware of any.
    And any such plugin would need to be specific to the code used for membership plans.
    Writing such a plugin should be straightforward.
    You can post Jobs here.

    #246259

    In reply to: Unable to log in

    Engine44
    Participant

    I guess I mean all of the forums at this url: https://wordpress.org/support/bb-login.php. But the password works fine on BuddyPress. Thanks for responding.

    #246251

    In reply to: 2.3.3

    modemlooper
    Moderator
    #246246
    danbp
    Participant

    @maelga,

    thank you for your interest. But… which plugin do you mean ?

    If Buddy Community Stats, consider that messaging in BuddyPress concern firstly friends. When you’re on your profile, you can access to YOUR messages count (separated in send and received). Handling this as a global stat is not relevant to site wide activity.
    Imagine a community of hundreds of members where only a handfull of members take heavy contacts. This will increase the counter, but will indicate something absolutely false about you site activity – because it is a private members exchange).
    To get this count, you could use Buddy Member stats. But this plugin plays only at the member level, and his counts are not grouped to be shown to site admin.

    The aim of both plugins is to provide some basic counts for community members while remaining fast (if possible) and simple, not to bring extensive metrics, graphs or analytic stats about anything happening in BuddyPress. There are probably more sophisticated plugins who can do that.

    #246240
    Venutius
    Moderator

    Yes I think you will find it pretty straightforward, you need to install the BuddyPress Group Hierarchy plugin and from there you can go into the group settings and set a parent group for each group. You may also need the group Hierarchy Propagate plugin

    #246232
    danbp
    Participant

    Please, read a possible answer in this new codex article:

    BuddyPress Cover Images

    #246230
    Venutius
    Moderator

    Looking at it, I think you could create a template overload if Activity-loop.php and change the scope of bp_has_activities () to friends.

    See the activity loop page for more information:

    Activity Loop

    I’m not an expert, I think this is correct.

    #246227
    Venutius
    Moderator
    #246218
    Plucker
    Participant

    OK I raised https://buddypress.trac.wordpress.org/ticket/6708

    Thanks again for your help.

    #246216
    shanebp
    Moderator

    I’ve not seen your issue before.
    It may be a bug.
    You can submit a possible bug here.
    Be sure to include info about the browser you’re using and the hosting environment.

    #246215
    Plucker
    Participant

    Hi shane, thanks for the very prompt response – I’m getting nothing on screen with debug on and nothing in the file if I also switch the debug log file on.

    This is with BuddyPress active, bbpress de-activated and with t013 theme and no other plug-ins installed.

    I have the same (or very similar) error with member avatars.

    Upload Failed! Error was: The uploaded file could not be moved to wp-content/uploads/avatars/1/avatars/1.

    #246210
    shanebp
    Moderator

    Create a template overload of this template:
    buddypress\bp-templates\bp-legacy\buddypress\members\single\member-header.php

    Add this wherever you like in that template:
    bp_displayed_user_fullname();

    #246206
    Plucker
    Participant

    I’ve also tried re-installing WordPress and disabling all other plugins.

    Then tried deleting all plug-ins and re-installing WordPress and BuddyPress only, and still the same issue.

    #246201
    @mercime
    Participant

    @iamc0llins
    – Could you post the steps you have gone through so far so that we can identify where the roadblock is?
    – Did you double check in Settings > BuddyPress – Pages panel whether the names of the page is assigned to the respective component you activated?
    – Are you running on WAMP/XAMPP/LAMP or other setup?

    #246199

    In reply to: BuddyPress Login

    Henry Wright
    Moderator
    karlosdpm
    Participant

    How can I make their avatars to sync with buddypress?
    I want them to see the avatar they have had for years now in their buddy press profile I am installing.

    Currently their avatars show in regular wordpress pages but not on buddypress pages, for example in the profile page or in the activity page.

    thank you for your help

    #246189
    Brajesh Singh
    Participant

    Hi,
    Since I got this same question in my email today. Assuming that it was you or a coincidence, I will post the code here as well for everyone else.

    1. BuddyPress Needs the field_1, so you can not delete it. That gives us a solution, we can hide it using css/js and set it’s value to the value of username.

    There are two possible approaches.
    The first step is use following in css

    
    div.field_1{
    display:none;
    }
    
    

    That will hide the input box on the form.

    Now, we can update it using the js or PHP. I will post the simple solution using js

    You can put the following code in your bp-custom.php or functions.php

    
    function buddydev_disable_firstname() {
    	?>
    <script type="text/javascript">
    	jQuery(document).ready(function(){
    
    	var jq=jQuery;
    
    	jq("#signup_username").on("blur",function(){
    
    	jq("#field_1").val(jq("#signup_username").val());
    
    	});
    
    	});
    </script>
    <?php
    }
    add_action( 'bp_after_register_page', 'buddydev_disable_firstname');
    
    

    That should do it.

    There is another pure php solution by settings $_POST[‘field_1’] to the other value but I will leave that for others to figure out 🙂

    #246177
    silversurfer.wf
    Participant

    Dude, that is weird. I figured it out. When BuddyPress forums emailed me your response, it added extra characters in the Email. Then, when I cut and paste it back into BuddyPress forums, the extra characters were removed. I changed the code to remove the extra characters the Email added and the error went away.

Viewing 25 results - 11,726 through 11,750 (of 69,126 total)
Skip to toolbar