Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 43,526 through 43,550 (of 68,947 total)
  • Author
    Search Results
  • Andrea Rennick
    Participant

    It;s all down to available RAM and how many visits, not users.

    #101645
    Andrea Rennick
    Participant

    There’s not enough details here to troubleshoot anything.

    Free custom child themes from where? The repo? They all have different authors.

    Have they each been updated for the latest version of BuddyPress? (I know for sure two have not.)

    #101644

    In reply to: Why shold I choose BP?

    Andrea Rennick
    Participant

    BuddyPress is first and foremost a social network – the forums are attached to Groups and are a small component of the overall plugin. And the forum aspects can be disabled.

    So… if you’re looking for just a forum, look for a forum plugin.

    #101643
    Andrea Rennick
    Participant

    Yes.

    Allow BuddyPress to function on multiple blogs of a WPMU installation, not just on one root blog:
    define ( ‘BP_ENABLE_MULTIBLOG’, true );

    Put that in wp-config.php

    #101641

    In reply to: BuddyPress is Awesome!

    abhis2.0
    Member

    Its awesome but lacks a proper purpose.

    I couldnt decide to choose from traditional forums and BP? what do you say?

    mercime, I’ve changed the theme and it doesn’t solve the problem, but later I tried to deactivate the plugin: BuddyPress Backwards Compatibilty . And the error was fix ;) Many thanks & Happy new year 2011
    Muchas gracias!!!!!!!!!!!
    Any suggestion to change the view of the members search? when sombody do a members search, members are show in one long columm . I’d like to see it in 4×4 columsn rows….
    Alvaro

    Hugo Ashmore
    Participant

    Apologies for not getting back.

    If I had my brain in gear would have remembered the remove adminbar constant – thanks mercime.

    Also this page in the codex will give you an idea of how the adminbar is created and manipulated and perhaps how you could re-position those links:
    https://codex.buddypress.org/theme-development/modifying-the-buddypress-admin-bar/

    #101637
    Virtuali
    Participant

    there are several other threads on this:

    https://buddypress.org/search/?f=forum+blank

    go through all of them first.

    @mercime
    Participant
    #101629
    Paul Wong-Gibbs
    Keymaster

    @tekuan-coleman
    Hi. About Achievements: at the moment, points earned through unlocking achievements are not used for anything other than a highscore table. There is no virtual store and they are not intended to be a form of virtual currency.
    Have you seen how to create the Achievements by going to yoursite.com/achievements and clicking the “create” button at the top of the page?

    #101626
    Nahum
    Participant

    Not to add fuel but, I guess I’ll chime in as it was thread title that looked interesting. I also think Achievements should get BP Plugin of the Year award. It is the most “fun” and “useful” and it works.

    #101625

    I have the achievement and thought it was an awesome plugin as well….but i havent been able to use it yet because i dont know where to get awards from and how to set it up where they can use their points to buy awards or gifts for others….can you post your site so i can se how you used it or give me feedback on how i can use mine (set up awards and have people interact). i promise i want steal any of your ideas or material i just want to gain an idea on how to do this…thanks

    #101624
    Paul Wong-Gibbs
    Keymaster

    I love you <img src="smileys/heart.gif" width="" height="" alt="<3" title=" ;)

    #101619

    In reply to: BuddyPress is Awesome!

    @mercime
    Participant

    No worries. I agree, BuddyPress is awesome :-)

    #101617
    Josh McKenney
    Participant

    @dasnipe unfortunately that fix was only temporary… there was an error in the next step:( but I just found out once I deactivated buddypress welcome pack plugin it started working again. I’m hoping to now find a fix for that as I really like that plugin…

    #101616
    thealchemist
    Member

    Thanks to you both!

    Josh McKenney
    Participant

    I narrowed down my issue to buddypress welcome pack plugin:( too bad, really liked that plugin…

    aljuk
    Member

    @victor_moura – glad to help.

    define(‘DB_NAME’, ‘whatevernameigivethedatabase’);
    define(‘DB_USER’, ‘root’);
    define(‘DB_PASSWORD’, ‘root’);
    define(‘DB_HOST’, ‘localhost’);

    root/root is the default username / password combo for MAMP. Obviously you should never have it set like this on a live public server because it’s instantly hackable, but on your local MAMP (assuming you haven’t got it set up to actually serve a Live site for a client to see online) it’s fine.

    (When setting up a brand new site from scratch, you can also change your database table prefix (the setting is found in wp-config.php) for extra security. Google this to learn why it’s a good idea.)

    b) I use MAMP Pro which comes with phpMyAdmin built in. phpMyAdmin can be launched from MAMP Pro’s interface. When I’m setting up a site I create a folder in my browser bookmarks for local, and one for remote. Aside from the site URLs, I bookmark the phpMyAdmin interface for both local and remote, so I can get to either database in a single click. Obviously, with the remote database it will ask you to log in during the loading, since to bookmark it initially, you’ll need to access it from your website’s cpanel (or wherever you launch phpMyAdmin from at your web host) and to do that you’ll need to be logged in to your host.

    So, go into phpMyAdmin, click “localhost” (top left of main content area) to check you’re on the “home” page, and you’ll see an input field (“Create new database”). Name your db, and click Create (that’s all, no need to touch anything). This will create an empty database (a “shell” if you like) ready to be filled. I find it helpful to name the remote and local dbs differently (otherwise it’s too easy to get confused / messed up) .

    3. Then click “Import”, find your backup and load it. At this stage, absolute URLs in your site will be wrong (they’re pointing to the address of your remote web server, not at your local MAMP server). To correct this in one easy find and replace (whilst protecting the structural integrity of your database tables – very important!) use http://spectacu.la/search-and-replace-for-wordpress-databases/ (it’s a very powerful tool, treat with caution).

    Once you’ve got the hang of it, it’s quick. From starting a remote backup to running that db as a local mirror takes me about 30 seconds.

    i. when I’m loading in a remote db, I always delete the local one (to do this go to “localhost” in phpMyAdmin, click the name of your db in the left hand column and when it’s loaded click “Drop” – it means “Delete” – it’s top right, in red), make a new local one, and load the remote db into this fresh “shell” – just to make sure everything is exact. You can delete the local db from within phpMyAdmin. Incidentally, this usually isn’t the case on a remote database (usually, to delete the remote db if you need to, you have to go into cpanel and select “Database Tool” or something similar).

    ii. When saving the remote db, I select these options (you should Google this stuff) :

    Add DROP TABLE / VIEW / PROCEDURE / FUNCTION / EVENT
    Add IF NOT EXISTS
    Complete inserts
    Extended inserts

    Select “save as file” and “gzipped”. Don’t mess around with the dump, or unzip it.

    All of this works for me, with my particular setup. I can’t stress enough how important it is to do thorough testing, to be certain that the backups you make actually work.

    There are several standalone tools out there for more comprehensive db management, but phpMyAdmin works great for me at this point, and it’s so convenient having it all in the browser. What makes MAMP Pro so good is being able to set up multiple virtual servers – sometimes I’ll run several local mirrors of the same site so that I can try out different things and easily compare the results.

    Andrea Rennick
    Participant

    If you’re using GenesisConnect, please keep questions over on that support forum. :)

    Usually, Buddypress links are all on the blog where BP is activated. They do not go across all blogs unless you add a line to the config file. (like you see in our demos)

    Hugo Ashmore
    Participant

    @roy27 Please don’t double post always choose an appropriate sub forum and post once.

    Closing this thread, please continue in ‘Creating and Extending’
    https://buddypress.org/community/groups/creating-extending/forum/topic/how-to-move-the-admin-bar-functions-into-the-template-and-remove-the-admin-bar/

    chestnut_jp
    Member

    Thanks for you comment, @hnla

    Yes, I have tried a various ways, and have found that <div> and <ul> collapse the layout of post.
    Try and you will see what I mean.

    Anyway, the point is that single.php uses a wrong function.

    #101593
    luvs
    Member

    WHAT THE HECK? I get every email from wordpress and buddypress except the ac. email.

    IT WAS WORKING like Yesterday! I upgraded to wordpress 3.0.4 and UHHHH!

    #101590
    Virtuali
    Participant

    try adding:

    `/* Add words that we need to use in JS to the end of the page so they can be translated and still used. */
    function bp_dtheme_js_terms() { ?>

    var bp_terms_my_favs = ”;
    var bp_terms_accepted = ”;
    var bp_terms_rejected = ”;
    var bp_terms_show_all_comments = ”;
    var bp_terms_show_all = ”;
    var bp_terms_comments = ”;
    var bp_terms_close = ”;
    var bp_terms_mention_explain = ”;

    <?php
    }
    add_action( ‘wp_footer’, ‘bp_dtheme_js_terms’ );`

    to your functions.php file.

    There is extra code in there, if you get a (cannot re-declare) notice, delete the code following your already called function.

    #101588
    @mercime
    Participant

    Looks like it’s the Activity Stream in the home page. @sbrajesh‘s free BP Wire plugin has different markup.

    #101585
    modemlooper
    Moderator

    BuddyPress has no wire, is it a plugin or are you referring to the activity stream?

    Please read this: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/when-asking-for-support/

Viewing 25 results - 43,526 through 43,550 (of 68,947 total)
Skip to toolbar