Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 19,401 through 19,425 (of 94,540 total)
  • Author
    Search Results
  • #240049
    danbp
    Participant

    Double post. Topic is closed.
    Conversation can be continued from here.

    #240048
    shanebp
    Moderator

    If my-theme/buddypress/members/single/index-component-profile.php
    is your version of my-theme/buddypress/members/single/profile.php
    then don’t use a different file name.

    It’s much easier to do a template overload.

    Template Hierarchy

    Theme Compatibility & Template Files

    CodeMonkeyBanana
    Participant

    Hi,

    I have created a buddypress.php file in root of my theme to setup general page and sidebar. This template uses the_content() so all the normal buddypress stuff loads up.

    I want to now offer my own files for the various template parts but I am doing something wrong.

    For instance, if I add this template part: my-theme/buddypress/members/single/index-component-profile.php it does not load it as a template part, it loads it as a full page template.

    I don’t want to create full template for every component, I want to make buddypress use the template parts.

    In the default theme inside plugin folder this is how it seems to work. Can I do it like this or do I have to use filters or something? The main plugin uses locate_template() to load all of these so I guess it’s possible, I am just not sure of the easiest/best way.

    How do I just build my templates for various sections?

    Thanks

    quincie
    Participant

    Hi,

    Thank you for the response.

    I am using buddypress. I am getting it in activity area in the sidebar.

    It has lots of contents on it as I’ve manually transferred it in the database.

    Hope you can help me.

    Thank you so much.

    Best,
    Quincie

    #240043
    danbp
    Participant

    Here a button example on blog page which let you add a post author as friend.

    function bpfr_add_friend_button() {
    // fetch post author id
    $user_id = get_the_author_meta( 'ID' );
    // calling the button
    $mybutton = bp_add_friend_button( $user_id ); 
    
    // condition
    	if ( ( is_user_logged_in() && is_page( 'blog' ) ) ){
    		echo $mybutton;
    	}
    } 
    
    // create the new action hook
    add_action( 'custom_zone', 'bpfr_add_friend_button' );

    Add this code to your child-theme functions.php, or to bp-custom.php

    And here the hook to add to template (child-theme) at the appropriate place.
    <?php do_action( 'custom_zone' ); ?> to template (generally single.php of your theme)

    #240042
    rexjaguarius
    Participant

    Hi,

    I am new to buddypress, and I am trying to make some modifications to “Sweetdate” theme, which buddypress is bundled with.

    What I need to do, is limit the number of messages between “friends” before an action is required. Basically the user can send up to a 10 messages to a “friend” before they have to decide whether to meet and continue talking. Does anyone know a way to track the number of messages that are sent and limit them like this? It would have to take into account messages that have been deleted as well.

    Additionally, I want to limit users to a certain time period in which to send those messages, so for example the user has 10 messages or 2 weeks to decide to continue chatting.

    Any help would be appreciated – please throw some code at me so I can get an idea where to start.

    #240036
    danbp
    Participant

    My buddypress version is 1.2.7

    This version is about 5 years old. Update BP, as mentionned filter are now all buit in.

    navyat
    Participant

    Hi,
    I would like to add filter(orderby Latest,alphabetical etc) for members in group
    How can I add this feature, My buddypress version is 1.2.7

    jay7981
    Participant

    Hello,
    I am quite new to wordpress and buddypress, however i am not new at troubleshooting. I have everything installed per the documentations and ensured its proper working functions with the default 2013 theme un-customized. i then installed a custom plugin to show player stats for an online game. In all themes when going to http://brassmonkeymilitia.net/sitev2/bf3-player-stats/ this page and clicking on details the lightbox pops up behind the theme, however In my troubleshooting i disabled all plugins except this custom one and it worked as it should so i then 1 by 1 enabled plugins and tested the page clearing the cache and reloading the page each time (exhausting as it was….) once i enabled the buddypress plugin it started popping up behind the theme once again. I then went into the settings of buddypress and disabled all components with the exception of the 2 core ones. and tried the page again now it works as it should. so 1 by 1 i enable the components until i get to the activity stream and viola here inlays the problem (yes i disabled the activity stream and continued to test until all other components were enabled.). I would like to have the activity stream working as well as my player stats. what can i do? i do know from some initial searching that having multiple lightbox operators can cause some unwanted issues. does the activity stream utilize a self contained lightbox addon that could be interfering with the themes built in lightbox?

    WP ver:4.2.2
    BP ver:2.2.3.1

    #240030
    joshdrok
    Participant

    Yes there are plenty of tutorials out there on using localization to change the labels, but to be fair… This method isn’t 100% in my experience. I could get the labels changed in about 95% of my site. be sure to change the localizations in your theme file if you happen to be using a buddypress theme. I’m looking into other ways to achieve this without localization. I’ll report back here with my findings.

    #240029
    shaquana_folks
    Participant

    My apologies @danbp I had a plugin called “BuddyPress xProfile Custom Fields Type” set up, that’s where the button came from. I just deactivated the plugin. But even when I still try to fill out the registration form, there’s no error that shows up this time, however, it takes me right back to that same registration page and it still did not create that new user for me. It would still just show up on the screen like this:

    New registration screenshot

    Any suggestions why this is still happening? Also, is there a good plugin that anyone can recommend for me to use so that when users create their profiles, they’ll be able to upload a profile picture?

    #240027
    Henry Wright
    Moderator

    Hey @vanleurth

    You could use the bp_parse_args filter for this. It will allow you to perform a meta query.

    Hope this info helps 🙂

    quincie
    Participant

    Hi,

    I am experiencing this error on my website.

    Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 32 bytes) in /home/desihumsafar/public_html/wp-content/plugins/buddypress/bp-core/bp-core-cache.php on line 209

    I’ve tried all the solutions, increasing memory limit in php.ini, increased memory limit in wp config but still i’m still getting it. Do we have any possible solution for this?

    Hope someone can help me with this.

    Thank you

    Best Regards,
    Quincie

    #240024
    Henry Wright
    Moderator

    I haven’t checked but am 99% sure $bp is type BuddyPress. Take a look at the project source to verify:

    https://github.com/buddypress/BuddyPress

    #240020
    danbp
    Participant

    How did you create that download box on the register page ? This is not part of BP or WP.

    #240016
    shaquana_folks
    Participant

    Hello @hnla,

    Didn’t mean to be “shouting” through this message in the subject line, it’s because this is the 4th time I’ve tried to get my message through this BuddyPress forum and out of all my messages from a few days back, I noticed that this recent one I just did was the one that actually went through and I did the other messages just the same exact way as I’ve done before so I don’t understand why my messages haven’t went through the other times. So it’s just been a very frustrating time for the past couple of weeks trying to get help and I haven’t received further help so far from anyone so I’m just trying to resolve everything. But you’re right, and I’m trying my best to work with everyone to get the most feedback that I possibly can to get the job done and resolve these problems.

    The off site frame 404 not found page should be working fine now. I just updated the permalinks and when I went to click on the register link, the registration page (as well as the actual website link) was working properly from my end.

    As far as the BuddyPress plugin goes, I didn’t know that BP doesn’t have a setting for people to upload files, however when you go to the registration page on my site, there’s an “Choose File” section for people to upload a picture file (for their profile page) on there as someone is filling out the actual registration form, so I just assumed that feature automatically comes with the BuddyPress plugin.

    There shouldn’t be nothing wrong with the theme for I had double-checked already from my backend and I spoke to a representative through my hosting provider and after explaining everything to them, they said that I would have to get in contact with one of the BuddyPress developers to resolve the issue and if it’s an issue from the hosting plan, to inform me about it that way I can contact them again to let them know what the specific problem is. So I’m basically going back and forth between BuddyPress and my hosting provider explaining the same thing, therefore I’m pretty much stuck on what to do, so that’s why I’m asking for anyone’s help if possible, because I’ve done everything on my end to the best of my ability.

    So here are some screenshots that I hope will be helpful of what I actually was doing through the registration process and hopefully someone can come up with a solution as far as why this is not working properly:

    SCREENSHOTS FROM MY MAGNUS WORDPRESS THEME FOR REGISTRATION PAGE:
    Screenshot 1
    Screenshot 2
    Screenshot 3
    Screenshot 4
    Screenshot 5
    Screenshot 6
    Screenshot 7

    Then I did the same exact process with one of the WordPress default themes from my dashboard:

    SCREENSHOTS FROM THE TWENTY FIFTEEN WORDPRESS THEME FOR REGISTRATION PAGE:
    Screenshot 1
    Screenshot 2

    And as you can see, the same result happens. So can someone please explain to me why this is happening? Is it a BuddyPress coding issue? Or is it from my end? Any feedback would be greatly appreciated.

    Thank you.

    vanleurth
    Participant

    Hello Happy BP Devs,

    I have been trying to create a function or hook to filter the activity stream using keywords in OR combination instead of AND. This guy (check out link) did what I want to accomplish but he hacked the core;
    http://wordpress.stackexchange.com/questions/176989/buddypress-activity-search-with-or-query-instead-of-and

    Is there a filter I can use to create the same effect?
    Any links are appreciated.

    Thank you,

    V.

    #240010
    danbp
    Participant

    http://www.careercoach.it/members/ shows the list correctly.
    It’s the main “member” menu who doesn’t work with your ??? member types (player/coach/corporate)
    Check the link.
    If you want to use member types, follow here.

    #240009
    danbp
    Participant

    For basic security consideration, a form field is strictly restricted to text only. That’s why you haven’t access to a text editor for a group description field.

    If despite this, you want add some html tags to the group description, you can remove some of the filters. But be warned that that will create a security hole on your site and don’t expect help for such a sensible hack !

    Read also here.

    #240007
    danbp
    Participant

    They are so many topics on this forum explaining how to do this ! If you think it’s not correctly documented, add your contribution to the Codex.

    That said, i made you a working buddypress-en_US file you can download with almost(hopefully) all groups related strings changed to Alliance. Some are not modified, but you can add your own words with poEdit.

    https://make.wordpress.org/polyglots/handbook/tools/poedit/

    eugenio_bt
    Participant

    Hi,
    I’ve updated my buddypress plugin to 2.2.3.1 version and my bbpress plugin to 2.5.7 version.
    My site’s still working, but nothing that works with buddypress is ok.
    http://www.careercoach.it
    username: eugeniobt69
    password: chitarra

    If you try to view any forum’s topic you will see only a blank page.
    If you go to menĂą –> member –> player(or coach, no differencs) you have to see the members list with the selected role(player or coach), but after update you’ll see no members.

    Can you please help me?!?!

    some infromation:
    MySql Version: 5.6.23
    Buddypress Version: 2.2.3.1
    bbpress Version: 2.5.7
    Wordpress Versione: 4.2.2

    shaquana_folks
    Participant

    To Whom It May Concern,

    I’m trying to get my registration page to work for my http://www.myloopnetwork.com website. It keeps saying that they’re using the wrong files (PDFs, DOCs, and DOCXs), even when I try to create a new user, and I’m only using the JPG, GIF and PNG files for the new user profile image. For the JPG and GIF file, it keeps bringing up about the file statement (as mentioned earlier) and for the PNG file, its telling me that the section to upload pictures is a required field as if I didn’t upload anything. Anything that anyone can do to resolve this issue would be greatly appreciated, for I am pressed for time to start promoting this site and get people as MyLoopNetwork users. I have the WordPress 4.2.2 and the BuddyPress 2.2.3.1 version, and I’m using the Magnus WordPress Theme, the 1.6 version.

    danbp
    Participant

    Of course you can customize it, but as that need to rewrite the whole who’s online class, you would perhaps prefer to use an already made work ?

    Try BuddyPress Friends On-Line, which comes with a friend on-line widget.

    Install it, activate the widget and you’re done.

    l r
    Participant

    I’m using wordpress version 4.2.2
    Buddypress version 2.2.3.1
    I am using a child theme of twentyfifteen.
    I can’t send a link to my site as it’s still in development.

    I am using BuddyPress with the plugins :
    -BuddyPress Groups Extras
    -BP Simple Front End Post
    -BP Default Group Tab
    -Blog categories for groups

    I would like to be able to add formatting to my group descriptions.

    In admin – I can seemingly edit the description in the sections Groups and Groups Pages. But any changes I make aren’t saved.

    I can edit the description on the front end of the site when in that group as an administrator, but I can’t add any formatting.
    Even if I add formatting in code, it isn’t saved.

    Can anybody help explain what I can do to resolve this?
    I would like to either have a toolbar on the description on the frontend, or be able to edit in the backend and for it to save my changes.

    thanks!

    Prabin
    Participant

    Hi everyone,

    I am using default who’s online widget in my buddyPress site. Currently, it is displaying Avatars for every users who are online but I want only “Avatars who are in my friend list” in my current site.

    Any trick for this?

Viewing 25 results - 19,401 through 19,425 (of 94,540 total)
Skip to toolbar