Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 39,901 through 39,925 (of 69,088 total)
  • Author
    Search Results
  • #112056
    dains
    Participant

    Hi, I had the same issue trying to customize the nav bar. I never did find an id for those pages, but it turns out that the main navs are hard-coded into the header.php file, so I was able to manually edit those. After that comes a wp_list_pages function coded to automatically add any other pages that you make, and those page ids are of course available from the editor.

    #112069

    In reply to: No signup button.

    r-a-y
    Keymaster
    #112068
    4ella
    Participant

    Don’t add that , user Stacy – Stacey etc. is a fu..ing spammer giving the same advices everywhere , he only wants to harm your computer , it is a pity that on buddypress.org doesn’t exists banning or something like a forum moderation .

    #112067
    sailorcap
    Member

    The plugin is “Buddypress Maps 0.3” and I have “Buddypress 1.2.8” also.

    Maybe I have missunderstood how the Buddypress works. Anyway. I have installed the BP Maps 0.3 and activated it.
    Now I want to know how I add a map somewhere on my website where I can take advantage of the nice feature BP Maps 0.3 offer.

    #112095
    Hugo Ashmore
    Participant

    ? what plugin is this, but unlikely you can add a map to a WP post or page but you will need to explain a little further.

    #112093
    nicolez
    Member

    Hi @pcwriter : I’ve tried the “Share It” plugin but it seems that is used to be able to post it to Facebook, Twitter, etc. I would like users to be able to repost to my own site’s activity stream. Thank you for the suggestion.

    #112091

    In reply to: Search Activity

    chrisjscott
    Participant

    @juanpons14 Thanks for the code; just started using it on my site. One thing I’ve noticed is that the “Load More” link at the bottom of the results doesn’t work – any thoughts on how to resolve?

    triplemoons
    Member

    So basically the answer is yes, but they won’t be visible in the activity feed until after they login again? That makes sense.

    I just found out the user contributor gallery the site is set with (essentially the whole purpose of the website) was discontinued by the developer, so I need to find another solution and get that worked out before worrying about BuddyPress. I’ve heard mention of NextGen being an option, but I’ve found no way to allow Subscribers/Members the ability to upload to predefined galleries.

    #112087
    pcwriter
    Participant

    @hnla @r-a-y @mercime

    The a**hole above has created another user account with a variation of Stacy in the username. Can anything be done to block this schmuck?

    #112086
    pcwriter
    Participant

    Username “Stacy” is a known spammer who gives “advice” that is potentially harmful to your computer. It is not advisable to use the code above.

    This plugin should get you what you want:
    https://buddypress.org/community/groups/buddypress-share-it/

    #112079
    norby500
    Member

    @Brooker , i’m not really sure how much i’d need to put in really..it is a good idea we both put in to get this plugin made…perhaps if we agree to allow it to be distributed into the community aswell then the plugin will be even cheaper?

    #112071
    Aaberg
    Member

    It was the .htaccess file that didnt exist. But thanks.

    #112064
    jonnArthur
    Member

    You can definitely limit posts by character count as they’re being inserted. Find where the post form is in your template. I’m using this in Buddypress for the activity stream, so I’m not sure if it’s the same for the regular WP postings. But you should be able to work it around a little bit:

    `

    function limitChars(textarea, limit, infodiv)
    {
    var text = textarea.value;
    var textlength = text.length;
    var info = document.getElementById(infodiv);

    if(textlength > limit)
    {
    info.innerHTML = ‘You cannot write more than ‘+limit+’ characters!’;
    textarea.value = text.substr(0,limit);
    return false;
    }
    else
    {
    info.innerHTML = ‘You have ‘+ (limit – textlength) +’ characters left.’;
    return true;
    }
    }

    Maximum 500 characters.

    `

    You can put that code right before

    `

    Also of note, if you’re doing an AJAX submit that doesn’t refresh the page, you’ll want to have an onclick action set on the submit button that re-inserts the original HTML of the ‘whatsleft’ span back into it. Otherwise they’ll still see the number of characters they had left when they submitted it, even though the form is blank.

    Note: I didn’t write this js, I found it somewhere. Possibly on these forums…but it works :)

    #112062
    ChevignoN
    Member

    Idem.

    I need the P2 theme with buddypress …

    Can’t find on the internet, google is not my best friend for this search.

    #112060
    jamz86
    Member

    If you’re trying to pull just the avatar from within a loop, this shows how to do that:

    http://wpmu.org/how-to-create-a-gallery-of-members-avatars-in-buddypress/

    If you’re trying to pull up someone’s avatar simply by ID, use bp_core_fetch_avatar() like this:

    `
    <?php
    global $bp;
    $the_avatar = $bp->displayed_user->id; //you’d put in whatever function you’re using to get the ID here, assign it to a variable
    echo bp_core_fetch_avatar( ‘item_id=’.$the_avatar );
    ?>
    `

    Look up bp_core_fetch_avatar() as there are a lot more options than this. For example, do you want a thumbnail or full sized image? There is a way to specify. Hope that helps!!

    #112058
    jamz86
    Member

    Hi @boonebgorges, I’ve tried the array structure, and the problem is still there. I’ve never done var_dump() before, so I’m a little confused. Could you show me the code I should put in?

    #112052
    @mercime
    Participant

    @JamieWade either follow up with theme dev for update or change theme.

    #112051
    @mercime
    Participant

    @uloga You’re welcome. Nice logo uloga :-)

    #112050
    @mercime
    Participant

    https://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/
    Disable the admin bar / buddybar at the top of every screen, put the code below into your wp-config.php at root of your WP install
    `define ( ‘BP_DISABLE_ADMIN_BAR’, true );`

    == move the search to the menu bar ==
    This can be done by ADDING the following to your style.css — you might need to add/delete some pixels here and there, adjust to taste

    “#header {
    margin-bottom: 20px;
    padding-top: 15px;
    }

    #header h1 {
    bottom: 50px;
    width: 100%;
    }

    #nav {
    max-width: auto;
    left: 20px;
    right: 300px;
    }

    #header #search-bar {
    top: 80px;
    width: 300px;
    }`

    #112049
    r-a-y
    Keymaster

    Pay no attention to Stacy. The person gives potentially harmful advice.

    What you should try doing is re-installing BuddyPress. Re-upload a fresh copy and try again.

    #112039
    Brooker
    Member

    @norby500 how much are you willing to donate for this plugin? maybe we partner up and hire someone? mine not working either…

    r-a-y
    Keymaster

    This issue has been brought up in the past.

    You can disable the ability to use the activity stream to reply to forum posts by doing the following:

    – Login to your WordPress install.
    – Navigate to “BuddyPress > General Settings”.
    – Under “Disable activity stream commenting on blog and forum posts?”, select “Yes” and save.

    There is currently no other solution to sync activity replies to forum topics yet.

    #112034
    r-a-y
    Keymaster

    @gcortex – Uninstalling the forums component and removing the forums tab from the header are two different things.

    If you want to uninstall the forums, login to your WordPress install and navigate to “BuddyPress > Component Setup”. Under “bbPress Forums”, select “Disabled” and then save the settings. Forums should no longer be enabled.

    If you want to remove the forums tab from your header, since you’re using the Fishbook theme, you should edit the header of the Fishbook theme.

    #112033
    Hooblah2u2
    Member

    Well inserting the code above only broke the site. However after removing this is the error I get….

    Warning: require_once(/home/www/nintendotower.com/wp-content/plugins/buddypress/bp-core.php) [function.require-once]: failed to open stream: No such file or directory in /home/www/nintendotower.com/wp-content/plugins/forum/bp-loader.php on line 19

    Fatal error: require_once() [function.require]: Failed opening required ‘/home/www/nintendotower.com/wp-content/plugins/buddypress/bp-core.php’ (include_path=’.:/php/includes:/usr/share/php’) in /home/www/nintendotower.com/wp-content/plugins/forum/bp-loader.php on line 19

    Oh joy..

    pcwriter
    Participant

    @italiancroydoner

    I know I`m tooting my own horn here ;-) , but my BuddyBuilder theme enables you to allow user access to individual BP components and WP pages/posts depending on logged-in/logged-out status. It also provides an optional Site Lockdown feature with/without a Splashpage on the frontpage, and an optional custom redirect page if Site Lockdown is enabled. See the bottom of the right-hand column on this page for all the Privacy features available: http://buddylite.com/buddybuilder-options/

Viewing 25 results - 39,901 through 39,925 (of 69,088 total)
Skip to toolbar