Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 20,626 through 20,650 (of 22,684 total)
  • Author
    Search Results
  • #55207
    Paul Wong-Gibbs
    Keymaster

    For Ousep’s post:

    Do I really have to use the bp-sn-whatever template to be able to use any of buddypress's functionality?

    No. Just like WordPress has its famouse “Loop”, BuddyPress implements its own Loops for all of the core components and features. See https://codex.buddypress.org/developer-docs/custom-buddypress-loops/.

    There is a range of different theme information on the Codex, but you are able to copy all of the templates from the BuddyPress parent theme into any WordPress theme and it will work. You will need to add custom CSS to style those elements, obviously.

    #55202

    In reply to: spam free wordpress

    David Lewis
    Participant

    I’m not sure how Facebook connect works… but allowing sign up or not is simply another configuration setting. I think it’s under the WPMU settings menu.

    #55197
    Hollosch
    Participant

    The developer gives no answer. What can i do ???

    #55193

    In reply to: spam free wordpress

    Mascix
    Participant

    @Xevo

    I think I was not clear. let me explain it. I want to disable regular signup process and enable facebook connect and orher social networks. this way I think people who uses our blog has to be confirmed from another networks.

    #55184
    Mark
    Participant

    I saw my site on a kiosk with IE8 today. The home page looked as you described. I didn’t know if was a result of IE8 or the resolution of the monitor.

    I also saw that buddybar menus on the bp home page did not appear ‘in front’ of the upper left members, groups, blogs search box and picklist. I didn’t look at all my blog themes but I did notice that WordPress Default 1.6 Theme by Michael Heilemann breaks with BP. The sub menus under “My Blogs”, > Dashboard- New Post- etc, are all disconnected from the menu. They float over to the right. I’ll check it with testbp.org. Is any one else seeing this IE8 buddybar menu behavior on the bp home and default blog theme?

    wpmu 2.8.4, bp 1.1.1

    #55177
    Mariusooms
    Participant

    It appears to be build around BP1.0. To bad, though, I think most folks would benefit from BP1.1 as WordPress users are used to quick updates, so I’m not sure how much attention the plugin will receive. Hopefully it won’t be to long for a BP1.1 and higher version.

    Looks like a good start though on the demo.

    #55175

    Using BuddyPress will ensure constant, future-proof development. I think using it instead of a random authors plugin is probably the best thing to do.

    You’re still going to need to adapt to WordPress being a slave to BuddyPress for all of the ways that BP hooks into and filters things like themes.

    BP assumes that you’re going to use most of its components, and if you turn them off it’s kind of up to you as the site author/admin to adjust accordingly.

    #55159
    Jeff Sayre
    Participant

    This script is most likely out of date with WPMU. Post a comment to the developer of the script in the link in the OP.

    #55156
    Jeff Sayre
    Participant

    Also, a kind reminder about the Domain Policy.

    #55145
    floboy
    Participant

    wolfapache9516, I will like to know how you resolve this. I see that your buddypress theme is fine now.

    #55130
    jazgold
    Participant

    just buy a bag of buns

    there are quite a few wordpress plugins for extending user profiles…

    i once used cimy extra user fields for a project, and it worked fine for my purposes. it looks like there are a bunch of options nowadays.

    #55129
    jazgold
    Participant

    this sounds great.

    unfortunately i must be doing something stupid.

    i renamed the .txt to .php and dropped it in my wp-admin dir (though i also tried the blog root). nothing seems to be happening. anything else i’m supposed to do?

    i thought perhaps i needed to specify which hooks to listen to, but can’t find where i’d do that within the script.

    any chance that it broke with BP 1.1.1 ?

    #55099
    buddyin
    Participant

    bug bug bug ?

    themes not working for other registered users as wordpress mu do no user theme no name on and url on page its look like work well with only one admin user and his group but if some one want to make own them and blogs and even like this http://mahi.buddyin.com no other than home page and plugin only working !!! what if any one want to open website like me for everyone who want to register his own blogin and grouping page

    #55086

    In reply to: spam free wordpress

    abcde666
    Participant

    Thanks you very much David !

    I have just changed the settings and it works fine !

    #55083

    In reply to: spam free wordpress

    David Lewis
    Participant

    @Erich73: Um… just change your WordPress discussion settings in the dashboard.

    #55082

    In reply to: spam free wordpress

    abcde666
    Participant

    so how to adjust the settings in a way that “unregistered users” and “not-logged-in users” are not able to post a comment to my main-blog at all ? Only registered and logged-in-users are able to comment ?

    Do I need to install a plug-in for this simple feature ?

    thanks !

    #55065

    In reply to: spam free wordpress

    Xevo
    Participant

    This might help you further.

    http://wpmututorials.com/how-to/stopping-spam-comments-sitewide/

    And why take the social out of a social community plugin..?

    #55054

    In reply to: BuddyPress i18n Topics

    takuya
    Participant

    How does bp’s slug (i.e group slugs) work?

    Are they relying on WordPress, or does bp has some sort of custom function? I just came across a wordpress plugin, which might solve the group slugs problem. But need to know how bp works.

    #55049
    Arx Poetica
    Participant

    Oh, I failed to mention Will Norris, who already wrote an OpenID plugin for WordPress, which works pretty good, but seems to be missing a few key features.

    There’s some talk of integrating OpenID into the core of WP, but there’s also disagreement on this. With BuddyPress putting it on the iteration roadmap, this may change people’s minds in the long run as they realize how Identity *IS* the platform (the core) of the Internet.

    #55041
    designodyssey
    Participant

    I won’t be using all the components, but I expect my design to be complex like Gigaom and Tastykitchen. I actually found BP looking for a suitable extended profile plugin to no avail. Alkivia is close, but some features have been “under development” for quite awhile in WordPress time.

    I will have a single blog setup so no extra blogs and I’m trying to keep the use of “wires” to a minimum as it can get out of hand quickly.

    madyogi
    Participant

    Thanks so much … this is making more and more sense. One question, though – what would be the best way to place such a condition into the template (while keeping as much of the parent template intact as possible and avoiding tedious file-by-file manipulation)?

    Could I, for example, place this sort of condition atop the normal header.php file, moving all the normal header HTML markup into the final else condition and removing the get_header(); call? Would this make sense:

    <?php if ( bp_is_user_profile() ) {
    include (TEMPLATEPATH . '/profileHeader.php'); //include this header on profile pages
    } elseif ( other_conditions() ) {
    include (TEMPLATEPATH . '/otherHeader.php'); //include this header on profile pages
    } else {
    include (TEMPLATEPATH . '/homeHeader.php'); //include normal header markup placed into homeHeader.php
    } : ?>

    Would that code work? Does it need an endif? Not sure if the closure of it is correct either, what with the colon and all. Regardless, once the syntax is corrected, it seems like an easy thing to maintain, since it would only involve changing the header.php, then creating whatever other headers I might need. Then every time wordpress looked at header.php it would decide which header markup to include. Is that a correct assessment?

    Is there some more efficient implementation of this type of conditional statement I’m not thinking of?

    Thanks again for all your help, Travel-junkie!

    #55029
    Paul Wong-Gibbs
    Keymaster

    New thread? What? I can see only wordpressfan’s post above yours…..

    Bowe
    Participant

    Xevo that is another thing that would be great.. They way I thought about that issue is to give members 2 options upon registration:

    1: Simple blog (like you described)

    2: Advanced blog (a fully featured WordPress blog like we have currently)

    And the options for admins to disable one of the two if they rather have all users to have simple/advanced blogs :)

    And are you saying I can already implement the BP menu on al blogs with the global header plugin, without any new code being written?

    #54944
    jazgold
    Participant

    @Tore

    cool, glad it helps…

    i imagine that any time someone isn’t logged in, they will all go to the same place… you don’t know if they’re returning and not logged in yet, or if they’ve never been to the site before and need extra info.

    so the splash page should be the login page, it seems.

    what if you just modified the login page to make it look like a more welcoming splash page?

    if you don’t want to put your own stuff directly into the core files, and i guess that’s a LAST, LAST resort, then you can add things to the login page using the related actions and filters. i’m going to have to do this in my next project actually, so thanks for asking:)

    here’s a tutorial that looks about right. looks kosher on first glance:)

    http://www.thinkinginwordpress.com/2008/12/customized-wordpress-login-page-plugin/

    basically, you can use it to inject HTML, or load up some jquery or whatever you want, and then you can CSS the crap out of everything. if you’re having problems with the default wordpress CSS taking precedence, you can always use the !important CSS attribute.

    and i just noticed actually that the code above needs a small tweak. it was breaking the flash uploader for posts somehow. bad bad.

    so, i needed to add an if statement to the catch_anons function. replace the whole function with this one:

    function catch_anons(){
    if ( !is_admin() ){ // if it's the admin area, it already checks
    // ( and the following breaks the flash uploader )
    global $user_ID;
    get_currentuserinfo();

    $login_page = get_bloginfo('url') .'/wp-login.php';

    if ( '' == $user_ID && strrpos( curPageURL(), $login_page)===false ) {

    $redirect = "?redirect_to=" . urlencode(curPageURL());

    header( 'Location:' . $login_page . $redirect );
    die();
    }
    }
    }
    add_action('init','catch_anons');

    cool. hope it works out for you.

    #54940

    In reply to: Two Languages

    Bowe
    Participant
Viewing 25 results - 20,626 through 20,650 (of 22,684 total)
Skip to toolbar