Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 18,401 through 18,425 (of 69,109 total)
  • Author
    Search Results
  • #174277
    Ben Hansen
    Participant

    easiest way is probably by redefining the element as hidden through an overriding css rule, should work but i’m not sure i’d never personally tried, it’s sorta counter to the whole idea of a social network to do that i think and it’s possible it’s not quite that simple.

    #174276
    samdg
    Participant

    Alright… and how should I do that? Hide the element.

    #174275
    Ben Hansen
    Participant

    you may be able to hide the element but you won’t be able to obscure the profile url so there’s really no way (at least that i know of) to make usernames truly private.

    #174267
    husdom
    Participant

    Ditto…

    Experiencing the same issue…

    Mr Fox

    #174266
    thisisbbc
    Participant

    Bump.
    Anyone, please?

    #174265

    In reply to: Gray box on BuddyPress

    @mercime
    Participant

    @monaloco only to the extent that anyone can just speculate about what’s happening. What theme are you using? Might help. Also, if you’re using Chrome, right click on the gray box and click on Inspect Element and copy the styles and post it here.

    #174248

    In reply to: Profile Additions

    @mercime
    Participant

    @geebz You only need to post once. Closing this duplicate of https://buddypress.org/support/topic/profile-additions/

    #174246

    In reply to: Profile Options

    @mercime
    Participant

    @geebz You only need to post once. Closing this duplicate of https://buddypress.org/support/topic/profile-additions/

    #174239
    MONDOHA Maoulida
    Participant

    its a good theme
    the link for download is boroken it dont work please give a another link
    thank you

    #174235

    In reply to: Gray box on BuddyPress

    monaloco
    Participant

    Sorry if that was confusing. I just uploaded a screen grab to my blog to host the image. It’s a separate page altogether. 🙂

    This is a completely different problem than Ive seen anyone else asking about so I thought it might help to see the issue itself. We have a construction page up right now because we’re just starting to design our site so I can’t give you an actual URL. Does the screenshot not help?

    #174234

    In reply to: Gray box on BuddyPress

    @mercime
    Participant

    @monaloco So you have a screenshot of the issue. For a moment there you had me confused as to how you got BuddyPress in a WordPress.com account 🙂

    As to the issue, it’s possible that it could be resolved by simply tweaking styles in your theme’s style.css file. We need to see the site/webpage, site url?

    #174229

    In reply to: Gray box on BuddyPress

    monaloco
    Participant

    please just click on the link above to see the gray box… couldn’t post it in my post for some reason.

    #174224
    xyhavoc
    Participant

    Thank you all for the help and links. I really appreciate it! The theme author has responded and informed me that buddypress will be available in the next release of the theme, I just hope it’s sooner rather than later.

    #174223
    danbp
    Participant

    hi @fyreus,

    despite you don’t mention your bp version nore the used theme, deactivate all extra group management plugins and consider this solution: https://codex.buddypress.org/developer/how-to-add-members-to-a-group-via-wp-users-screen/

    By default, BP let you add members to groups from the frontend if you’re friend and at least group admin. And it’s not a good idea to modify this, IMO. 😉

    #174221
    @mercime
    Participant

    @matejr That’s a tall order. Setting up what you envision would require custom plugins and modifications beyond the scope of these forums. Having said that, you might want to read the following posts which show some solutions used to get a better understanding of the scope of the project you want to take on.
    https://buddypress.org/2013/01/an-online-community-for-educators-built-with-buddypress/
    https://buddypress.org/2012/12/re-thinking-college-admissions-with-buddypress/

    #174220

    In reply to: BP site slow to load

    jf_trumpet
    Participant

    We are still working on this issue and is one of the last hurdles to going live. The theme may not be as much of an issue as previously thought.

    One of my developers did a gradual install of all fresh components and tested it along the way on a different host:

    WP: Fresh install
    Buddypress: Fresh install
    Razor theme: Fresh install and default settings

    Everything was as fresh and default as I could make it.
    just WP: ~1 secs
    WP + Razor: ~1.7 secs
    WP + Razor + Buddypress: just over 4secs
    WP + Razor + BP + 20k groups (homepage): Just under 8 secs
    WP + Razor + BP + 20k groups (grouppage): 9-10 secs

    So thats it, no other theme or plugins being used. Just the core WP Razor BP.

    With my customizations and required plugins, the site loads around 30s per page.

    My site has 20K+ groups, but there are no users. Would the number of groups affect the load times of the site?

    We are not caching the site currently as this issue needs to be addressed prior to that option.

    Thank you for your help.

    #174213
    mattg123
    Participant

    @shanebp looks pretty cool checking it out now thanks

    #174210
    shanebp
    Moderator

    Arrowchat is the usual solution.

    http://www.arrowchat.com/

    #174205
    mattg123
    Participant

    No need…. I’ll just explain it slightly better you’re using a buddypress child theme, so you need to create a folder inside _inc called “js”. For me, this holds all my javascript files in this case, you’ll put backstretch.js here (make sure the name is backstretch.js)

    Next step is putting the background image in the folder _inc as well, place your image inside “images” within _inc, name it background.(whatever)

    Now we need to add the code so that wordpress uses these files – we can add it to our functions.php

    function backstretch_script() {
     
    		wp_register_script( 'backstretch', get_stylesheet_directory_uri() . '/_inc/js/backstretch.js', 'jquery', '1.8.3', true);
                    wp_enqueue_script( 'backstretch' );
        
    }
    add_action( 'wp_enqueue_scripts', 'backstretch_script' );
    
    	function backstretch_add() {
    ?>
            <script type="text/javascript">
                jQuery.backstretch("<?php echo get_stylesheet_directory_uri()?>/_inc/images/background.jpg");
            </script>
    <?php
    	}
    add_action ('wp_footer', 'backstretch_add', 20);

    add that code as is – you may want to change the .jpg to .png or whatever file type your image is.

    If for some reason you don’t want to place backstretch.js or your background image in those folders, you’ll need to modify these two lines to the new location.

    wp_register_script( 'backstretch', get_stylesheet_directory_uri() . '/_inc/js/backstretch.js', 'jquery', '1.8.3', true);
    jQuery.backstretch("<?php echo get_stylesheet_directory_uri()?>/_inc/images/background.jpg");

    Hopefully that’s slightly clearer

    #174204
    fyreus
    Participant

    Is the Groups > ‘Edit’ Function still broken? (Yes i’ve deactivated everything and activated everything 1 by 1) I can’t access anything like the picture posted by Aces.

    *edit* Think i found something that works at the moment called BP Group Manager.

    BP Group Management

    Although the plugin claims that it’s already been added, it’s obvious it doesn’t work properly, so this will have to do until the Edit link is fixed.

    #174196
    kwright
    Participant

    Thanks for your reply. I am assuming it needs buddypress.css but as I said I cannot find where to download this. I have searched the plugin directory to no avail. Can you tell me where buddypress.css is located so I can download and try it.

    Thanks
    Ken

    #174195
    davaguco
    Participant

    My wordpress was working perfectly before installing buddypress. I installed buddypress, I didn’t upgrade it from another version.

    #174193
    modemlooper
    Moderator

    buddypress.css is a basic style sheet for layout formatting. You will probably need to add more css to your style sheet to handle the extra html supplied by BuddyPress.

    #174185

    In reply to: Follow

    Henry
    Member

    Yes, it’s possible and very easily done using:
    https://wordpress.org/plugins/buddypress-followers/

    #174181
    colabsadmin
    Participant

    @dennish

    Its been a few weeks and was wondering if deleting the bbpress issues in the buddypress folder is still the fix for the spambot issue you were having. Thanks!

Viewing 25 results - 18,401 through 18,425 (of 69,109 total)
Skip to toolbar