Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 19,951 through 19,975 (of 22,649 total)
  • Author
    Search Results
  • Psyber
    Participant

    Thanks Andy

    Andy Peatling
    Keymaster

    To hush the “No BuddyPress theme” nag you need to add a “buddypress” tag to your theme css header.

    If you want to use BuddyPress with an existing WordPress theme you need to copy over the theme files. You’ll need to adjust the HTML to match you theme though.

    This is never going to be the ideal way to do things though, the best experience with BuddyPress is always going to be building a site from scratch with BuddyPress in mind.

    designodyssey
    Participant

    I sorta get this, but here’s my concern. I’m using Hybrid Framework which needs to be the parent. I will make a child theme based on it. Ideally, I’d like to put the BP “stuff” in the child so upgrading Hybrid won’t screw up anything (Andy said something about this being an acceptable approach in another thread). Also, if/when Justin adds BP capabilities to Hybrid, I can just delete the BP functionality in the child.

    If I do this, I probably need to take the functions/templates from BP parent and put them with WP child. I’m fine with this too (although painful on upgrade). My question is about where BP is looking for things. If it’s looking in the plugin folder and I have the files/functions in the WP child theme folder, will that work???

    Before I go ripping out BP parent files and inserting them into WP child folder, I’d like to know.

    #61985
    Andy Peatling
    Keymaster

    Wait sorry, I was confused above. I meant I’ve updated this plugin:

    https://wordpress.org/extend/plugins/external-group-blogs/

    Not BP group blogs.

    David Lewis
    Participant

    A plain WordPress theme won’t have any of the necessary template tags and loops and such to display your BuddyPress content. So you have to either add the functionality and templates your need to your current WordPress theme *or* use the BuddyPress default theme and rework it (via a child preferable) to make it look like your current theme.

    #61979
    zvhipp
    Participant

    I used it on WordPress, not WordPress MU, however I had tried for short time just to see if it registers users on WordPress MU, and It did, but further than that I have no knowledge of it.

    On WordPress, it works fine, just for regular plugin search install gigya and good to go, It will register users fine and allow them to create profiles , wire, messages all stuff. Just this avatar like facebook connect, gravatar brings in wordpress, Gigya is not able to do default way, however in gigya login widget it does show it. Just minor tweaks guess it will require and good to go.

    Lsm_267
    Participant

    same purpose by me

    I just want to organise my registred users on a BP groups basis, the others BP functions aren’t needed.

    I’d rather not have to build a child theme, because of the many functions implemented on my actual wp theme (and my fear of CSS).

    Waiting for a little tutorial on how to do that and ready to test/help.

    designodyssey
    Participant

    Good luck, I’m looking for the same answer. I appreciate all the work that went into the new BP theme, but I want to use the WP theme and add content from some of the components. I sorta learned how this was done pre-1.2, but not sure how the detection works if the theme files are in the plugin folder and you’re not using BP-parent as the parent theme.

    Someone will hopefully help soon.

    #61968
    Psyber
    Participant

    I am working on the same thing right now, has this been accomplished with 1.2 Beta? What is the correct process?

    #61967

    @r-a-y

    Using plugins loaded still does not promise that the user has BuddyPress installed on their site and activated on that particular blog, so you will still want to do the check for BP_VERSION.

    It’s a dizzying setup, trying to make plugins off of plugins that may or may not be there, or are there but just aren’t loaded yet, or are loaded before yours because another plugin force loaded it out of order.

    Going forward from BP1.2, we can avoid all of those issues. Remember too that bp_init has priorities too. If you need to make sure your plugin is loaded before any other BuddyPress extensions are, you can prioritize it’s load the same way as any other WordPress action.

    #61961
    Brajesh Singh
    Participant

    hi Ray

    plugins_loaded is the standard action which gets called when all the active plugins’s source code is included(loaded) by wordpress, so It tells you that all the plugins are ready, and you can call your functions now.

    The advantage of using “plugins_loaded” action is that, it is the first action hook which gets called after your(/all other active plugins source code is loaded by wordpress) , so You can be sure your code is called quiet before anything else happens.

    Investigate wp-settings.php for more.

    JJJ has proposed a nice solution with the bp_init action(just introduced in the r2472).

    Because wordpress does not guarantees which plugin gets loaded first( it has something like, the plugins consisting of bare files are loaded first, the the plugins which are inside their own directory loaded alphabetically, AFAIK,It might have changed recently), So a plugin which is dependent on buddypress, will have many issues detecting bp is loaded or not.

    So, JJJ’s solution helps there as all the buddypress methods which are called on plugins loaded action have priority less than default(less means higher priority), so if we hook to bp_init, we can be sure buddypress is loaded and you are still calling at the same action, I am already trying my hand with this, and it seems to be working,still testing though.

    btw, if you have your plugins, which uses the hook “plugins_loaded” and has priority greater than 10, i.e 11 or anything else, you don’t need to worry about this change.

    #61959
    dpee
    Participant

    Sorry for the delay.. I’m not quite tech savvy so my cirtex hosting operators helped install it for me. Im assuming that its installed on a subdirectory because of the whole http://mysportspress.com/wordpress-mu/ thing, and I have another website running regular wordpress at mysportspress.com.

    So what I am understanding from these posts is that because of how I have installed it, I cannot make a yourdomain.mysportspress.com blog rather it had to be a mysportspress.com/yourdomain blog ? Either way it doesn’t matter to me too much I’d just like to get it working, so what Exactly am i to do?

    Sorry for being such a Newb

    #61946
    guristu
    Participant

    The short answer is Yes. The long one is they are made for filling out forms and submitting them. A drop-down is just a field that they might encounter, so expect the functionality. On the other hand we are talking here about bots that look for WP/MU installations to exploit the default sign up or comment forms. As a rule of thumb, anything that you can do to change the default behavior, do it. It’s like Andy said: if you make it the default, the spammers will figure out a way to get around it.

    Also: try very hard to stay away from the following in your URLs: wp-signup.php, wp-register, register, wpmu, wp, and anything that hints at a wordpress installation.

    #61938

    For BuddyPress 1.2, I’ve been using this.

    function your_custom_loader() {
    // Put the code that needs BuddyPress here. This could be something like...
    require_once( WP_PLUGIN_DIR . '/your-custom-plugin/your-plugin-buddypress.php' );
    }

    if ( defined( 'BP_VERSION' ) )
    your_custom_loader();
    else
    add_action( 'bp_init', 'your_custom_loader' );

    This way it isn’t loading any files and isn’t force loading BuddyPress; instead it’s looking to see if it’s active, and if it is your plugin loads; if it’s not it adds itself to the new bp_init action at the end of the BuddyPress load cycle, and loads then.

    This method also follows the philosophy that plugins should be made for WordPress but be BuddyPress aware. This way you can tuck your BuddyPress functions and features away in a special your-plugin-buddypress.php file, and only load that file when BuddyPress is already loaded and active, and without errors.

    Also, you’re not adding any overhead by doing this, other than a binary check for BP_VERSION. Your plugin will load itself as usual in the WordPress plugins screen, and will only start looking for BuddyPress code when BuddyPress tells it too. This is actually how I made the BuddyPress Backpat plugin load itself.

    #61915
    Andy Peatling
    Keymaster

    If you’re not using the default themes, or you haven’t created a theme that is a child of bp-sn-parent then you need to install the back compat plugin to get this back again:

    https://wordpress.org/extend/plugins/buddypress-backwards-compatibility/

    #61906
    Alvaro Illanes
    Participant

    … There any wordpress plugins that allow certain themes and plugins show only specific users?

    regards

    Alvaro

    #61902
    flyingfrog
    Participant

    i don’t know if it can save you some work, i’ve tested some more:

    * adding only one of First/Last name works

    * In every case, if from wordpress administration “Edit user” i change the “display name publicly as” to the nick or last name of the user that doesn’t change inside buddypress

    I don’t know if this is a desired behaviour or not, so just hoping to be useful

    keep on your great work!

    #61896
    gpo1
    Participant

    @zvhipp, Does it work fully and any pit-falls?

    @designodyssey That login section looks good,does it run wordpressMU?

    http://www.reverbnation.com/controller/main/signup

    #61868
    zvhipp
    Participant

    Seems Gigya does work with BP 1.2 on WordPress. Only thing it would require is to modify avatar section so it can display yahoo avatar if linked just as facebook connect does. And display log in button with default buddypress login box.

    #61857
    grosbouff
    Participant

    Ok, I think this time a first version will be finally ready in some days…Let’s say… about one week I think ! A bunch of hours…

    For WPMU+BP 1.2.

    When WordPress 3.0 will be released; it will also work for single WP+BP.

    First version will not support picture galleries.

    #61854
    David Lewis
    Participant

    Okay… when I try this new way of leaving the themes in the plugin folder… my child themes now give me an error saying “The following themes are installed but incomplete. Themes must have a stylesheet and a template.” and “Template is missing”.

    Do you have to reference “Template: bp-default” differently from a child theme? With a full path perhaps? How does WordPress “know” about those themes inside the BuddyPress folder? I’m at a loss I’m afraid. And I’ve followed the instructions on the “building-a-buddypress-child-theme page” to the letter.

    #61853
    danbpfr
    Participant

    Have you RU lang activated in BP (not WPMU) general settings ?

    Notice: On the trac, the RU.mo trunk version is for 1.1.2

    https://i18n.trac.buddypress.org/browser/ru_RU

    Translator is SlaFFik

    https://profiles.wordpress.org/slaffik/

    #61818
    Brajesh Singh
    Participant

    1. yes, It works same as on wordpress.com, she can always start a new blog(if you have not put any restrictions.

    2. Yes, they can move, they same way, you move from wordpress.com to selfhosted. Export the posts and move.

    #61812
    Paul Wong-Gibbs
    Keymaster

    Hi,

    I have installed the latest version of buddypress version 1.2 beta and im using this on wordpress 2.9.1. I would like to know how i integrate bbpress v3.1 with wordpress/buddypress. I’ve read many articles on this but all see to take about WordPress MU which i’m not using.

    Any help would be appreciated.

    Thankyou.

    Murphy

    bbPress is only up to 1.0.2 so I have no idea what you’re talking about. It’s probably best to make a new thread.

    #61808
    Brajesh Singh
    Participant

    @do77 , David’s method will save a lot when you will upgrade.

    Now for your questions

    1.No, You do not need to copy any file(because you want the same layout, so child theme inherits it from parent).

    2. Create style.css, and put there the content as David has pointed(do not miss the parent tag and theme name in comments, wordpress uses this to recognize the theme)

    3.yes, then you can use firebug to override it as you have already given an example

    4.You may not need to do that, because you are not using any other files than css.

    5, yes, but please read about wordpress child theme, that will help you in long run.

Viewing 25 results - 19,951 through 19,975 (of 22,649 total)
Skip to toolbar