Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 50 total)

  • metalhead
    Participant

    @aaronthomas1979

    All 3 of these options (BP Simple Private, Buddypress Lock, or the custom code) all cause significant page speed issues. (like 3 seconds)

    Any suggestions to combat the privacy issue without compromising speed?


    metalhead
    Participant

    @aaronthomas1979

    Envato Market has a $20 plugin that claims to “add upload avatar to registration page.”

    It adds it to the registration page, but the avatar doesn’t get saved; it’s a scam.

    Never buy anything for your Buddypress site from Envato Market – I made a $20 mistake by not reading about the company first.

    Listen to Venutius; he is totally correct about what your pluggable options currently are. (Unless you create your own plugin, finding a way to temporarily save the image until after the account is created, and then associate it to the profile, but good luck with all that!)


    metalhead
    Participant

    @aaronthomas1979

    Thanks for sharing your solution. Shortening the filename worked for me too.

    I’m going to search Buddypress Trac and see if the authors are aware of it. I’ll report it if it’s not in there.


    metalhead
    Participant

    @aaronthomas1979

    Thank you! I appreciate your help with this. Works great. Now I can start enjoying all those nifty Nouveau enhancements.


    metalhead
    Participant

    @aaronthomas1979

    Thanks for your advice.

    I viewed the console, and found this:

    my js error

    But where do I go from here?


    metalhead
    Participant

    @aaronthomas1979

    If you haven’t already, create a child theme.

    Then copy your buddypress/template folder & subfolders over to your child theme.

    Go through each file, search for instances of the word “FRIENDS,” and replace it with “CONNECTIONS.”

    If you can’t find all instances of the word “FRIENDS” in these files, check your buddypress.po file and use Poedit to hack it out of there too.


    metalhead
    Participant

    @aaronthomas1979

    If you haven’t already, create a child theme.

    Then copy your buddypress/template folder & subfolders over to your child theme.

    Go through each file, search for instances of the word “FRIENDS,” and replace it with “CONNECTIONS.”

    Or, you can pay a developer thousands of dollars to make a plugin do it for you 🙂


    metalhead
    Participant

    @aaronthomas1979

    Put it all in one column:

    /* Aligns Registration Profile Details fields to the left */
    #buddypress .standard-form #basic-details-section,
    #buddypress .standard-form #blog-details-section,
    #buddypress .standard-form #profile-details-section {
        width: 100%;
    }
    #profile-details-section {
        margin-top: 20px;
    }

    And the finish button too (recommended):

    #buddypress .standard-form#signup_form div.submit {
        float: left!important;
        margin: -12px 3px 3px 3px!important;
    }

    That should line it all up in 1 row. Congrats on not paying someone $1000 for that info 🙂


    metalhead
    Participant

    @aaronthomas1979

    This plugin puts a band aid on that issue.

    User Menus


    metalhead
    Participant

    @aaronthomas1979

    Which element(s) are styled wrong?

    Are you using a Child Theme?

    If not, you should create a child theme, apply changes to the css files in the child theme, and not typically have this problem ever again.

    They said they changed the nchor tag in the new version. What kind of elements are displaying wrong?


    metalhead
    Participant

    @aaronthomas1979

    I had the same issue with the past 2 upgrades. It had something to do with my child theme. Are you using one?

    I rolled back to the previous version, re-installed the update, and the 2nd try was a success.

    Good luck!


    metalhead
    Participant

    @aaronthomas1979

    Correction: What I meant was, I didn’t find any parentheses in the span tag, but I removed them from the %s, and it display the name without parentheses, but it crippled the function; without those parentheses, I click on a name from the list and the name gets printed with html code wrapped around it.

    Not a big deal – but let me know if you have any other suggestions. I will mess around with it some more and post back if I get it working.


    metalhead
    Participant

    @aaronthomas1979

    Thanks! That worked.

    One small problem that remains, is that I still have parenthesis wrapped around $user->name

    Here’s a chunk of the code:

    printf( '<span id="%s" href="#"></span><img src="%s" style="width: 15px">   %s (%s)' . "\n",  
                    esc_attr( 'link-' . $user->ID ),  
                    esc_url( $user->image ),  
                    esc_html(  ),  
                    esc_html( $user->ID )

    I deleted $user->name from the 3rd line, but if I delete the parenthesis, or the entire line, then the function stops working.

    Do you know how I can get the parenthesis out of there?


    metalhead
    Participant

    @aaronthomas1979

    I reverted back to the previous version, and installed the update again.

    This time, it worked without any problem.

    Thanks!


    metalhead
    Participant

    @aaronthomas1979

    Thanks for your reply.

    After reverting back to the previous version, I installed the update again, prepared to take notes, but this time, it worked flawlessly. Weird!


    metalhead
    Participant

    @aaronthomas1979

    Sorry if you already tried this, but let me suggest:

    Rename the Buddypress folder – it will disable the Buddypress plugin.

    If Buddypress is causing the problem, this should at least let you get back into your dashboard.

    Assuming this is the case, then you will be able to delete Buddypress the proper way, via “Plugins.”


    metalhead
    Participant

    @aaronthomas1979

    bbpress has got you covered for those first 2 goals.

    As for vote/share posts, most likely there’s an additional bbpress plugin to help make that happen. If not, it sounds like stuff you can whip-up yourself fairly easy.

    bbpress, like Buddypress, is open source, also, both plugins offer child-theme functionality, so you can make quick hacks very easily, and safely.

    Although Buddypress is the greatest plugin ever, you don’t need it for these things you want to do.

    https://www.google.com/url?sa=t&rct=j&q=&esrc=s&source=web&cd=1&cad=rja&uact=8&ved=0ahUKEwjGv7b7rP3TAhVD3IMKHWyJAS0QFggmMAA&url=https%3A%2F%2Fwordpress.org%2Fplugins%2Fbbpress-votes%2F&usg=AFQjCNHs4HbwgHzfXFGXSO9aRWz7RFYcqg


    metalhead
    Participant

    @aaronthomas1979

    Read this conversation in its entirety.

    The plugin author was kind enough to guide me through the process of making that work. If you follow those instructions, your users will be able to upload their profile photo during registration.

    Although this method works, it causes a slight problem: The users won’t be able to update their photo in the future, because the default Buddypress “Change avatar” function refers to a different file, or location, than the xprofile custom fields type location.

    If you find a way to fix that problem, please let me know.


    metalhead
    Participant

    @aaronthomas1979

    There is a plugin called BP Simple Private that allows you to restrict access to all Buddypress pages to logged in users only. Then, if people try to visit Buddypress pages after you install the plugin, they will get redirected to the home page.

    But if I’m understanding you wrong – and you want to have a separate site just for your buddypress groups, then I will recommend setting up WordPress Multisite.

    And if I’m understanding you right – which bells and whistles do you want to disable? I’ve disabled a few things with CSS & PHP hacks – but like what do you want to see gone?


    metalhead
    Participant

    @aaronthomas1979

    Thanks.

    Based on that info, I decided I need to add an index.php to my /single/ folder. I created the file, but I’m not sure what to put in it.

    Can you give me an example of what I can do? Or link me to a page with further explanation? I tried googling “custom buddypress template,” but I don’t even know if my search query is correct.

    I’m ready to hire a dev for this, but how will I explain to them what I need done? Something like this:

    “I use Buddypress, and I need a custom template for my member pages. I need you to customize my index.php file located in my /single/ directory, so that it will display specific widgets in 2 or 3 column mode.”

    I tried asking a dev about that already, but he doesn’t know what I’m talking about. Is there a better way to describe it?


    metalhead
    Participant

    @aaronthomas1979

    BP Simple Private


    metalhead
    Participant

    @aaronthomas1979

    Resolved:

    There’s no trick. I was putting the <span in the wrong place. It has to go before the single quote. (And of course /span after the other single quote.)

    Then, I did the same thing for the other element.

    So there you have it – an awesome way to show unread messages in a menu item. The only thing missing now is a way to automatically update the count when the user gets a new message. Any suggestions on that?


    metalhead
    Participant

    @aaronthomas1979

    I copied a fresh compose.php over to my child-theme and all is good now. Thanks very much!


    metalhead
    Participant

    @aaronthomas1979

    (Resolved)


    metalhead
    Participant

    @aaronthomas1979

    Thanks for that link! I will Google harder.

    This is resolved, but I can’t figure out how to mark it as such. Sorry about that too!

Viewing 25 replies - 1 through 25 (of 50 total)
Skip to toolbar