Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'forum'

Viewing 25 results - 19,326 through 19,350 (of 20,260 total)
  • Author
    Search Results
  • #40292
    Burt Adsit
    Participant

    sgrunt, ya I guess you wouldn’t need to mod the widget code, just the theme code. hmm. Well if Andy says it’ll go away by updating to latest trunk then it will. Warning! The theme directories have changed. See: https://buddypress.org/forums/topic.php?id=1675

    #40289
    Burt Adsit
    Participant

    I new this issue was familiar: https://buddypress.org/forums/topic.php?id=976

    Nobody seems to have figured out why this is happening. Please describe your configuration. subdirectory/subdomain, wpmu installed in a sub dir or the root, what ver of wpmu, …

    We are never gonna figure this out otherwise.

    #40271
    edliu
    Participant

    OK Thanks Marco72

    #40270
    Marco72
    Participant

    If you use Firefox add the Web Developer toolbar. It saves me a lot of time when I need to understand how things work .

    #40263
    Matt Kern
    Participant

    found it over here…

    remove admin bar

    https://buddypress.org/forums/topic.php?id=1115

    #40259

    In reply to: limit 1 blog per user

    produlz
    Participant

    I found a solution, but I’m not a PHP programmer, It’s a hack of the code of this topic https://mu.wordpress.org/forums/topic.php?id=5930

    Let’s go only if you are using the lasted trunk:

    Open the mu-plugins/bp-blogs/bp-blogs-templatetags.php – Find this code starting at line 682 end at 696

    <?php printf(__("By filling out the form below, you can <strong>add a blog to your account</strong>. There is no limit to the number of blogs you can have, so create to your heart's content, but blog responsibly.", 'buddypress'), $current_user->display_name) ?>

    <?php _e("If you’re not going to use a great blog domain, leave it for a new user. Now have at it!", 'buddypress') ?>

    <form id="setupform" method="post" action="<?php echo $bp->loggedin_user->domain . $bp->blogs->slug . '/create-a-blog' ?>">

    <input type="hidden" name="stage" value="gimmeanotherblog" />
    <?php do_action( "signup_hidden_fields" ); ?>
    <?php bp_blogs_signup_blog($blogname, $blog_title, $errors); ?>

    <input id="submit" type="submit" name="submit" class="submit" value="<?php _e('Create Blog &raquo;', 'buddypress') ?>" />

    <?php wp_nonce_field( 'bp_blog_signup_form' ) ?>
    </form>

    Replace using this newbie code:

    // One Blog Only HACK START
    <?php $blogscheck = get_blogs_of_user($current_user->ID);
    $blogarrayvalue = (get_object_vars($blogscheck[1]));
    $blogsiteURL = "http://locutorpro.com.br";
    if ($blogarrayvalue[siteurl] == $blogsiteURL)
    {
    echo "";
    printf(__("By filling out the form below, you can <strong>add a blog to your account</strong>.", 'buddypress'), $current_user->display_name);
    echo "
    ";
    printf(__("If you’re not going to use a great blog domain, leave it for a new user. Now have at it!", 'buddypress'));
    echo "
    ";
    echo "<form id='setupform' method='post' action='";
    echo $bp->loggedin_user->domain . $bp->blogs->slug ;
    echo "/create-a-blog'>";
    echo "<input type='hidden' name='stage' value='gimmeanotherblog' />";
    echo do_action( "signup_hidden_fields" );
    echo bp_blogs_signup_blog($blogname, $blog_title, $errors);
    echo "<input id='submit' type='submit' name='submit' class='submit' value='";
    printf(__("Create Blog &raquo;"));
    echo "' />
    "; echo wp_nonce_field( 'bp_blog_signup_form' );
    echo "</form>";
    }
    else
    {
    printf(__("Sorry, you can have 1 blog only.", 'buddypress'));
    }
    ?>
    // One Blog Only HACK END

    I hope it help!

    Thank you for all dev team!

    #40255
    nicolagreco
    Participant
    #40254

    In reply to: Facebook connect

    danielfelice
    Participant

    Have you guys not seen the BP/WP FB Connect Andy modified?

    https://buddypress.org/forums/topic.php?id=1585

    #40245
    Lance Willett
    Participant

    Not sure if I’m late to the game on this one, but I followed the instructions in the bp-forums directory (https://trac.buddypress.org/browser/trunk/bp-forums/installation-readme.txt) and the install went easily and quickly using the latest bbPress (checked out via SVN from trunk).

    I was prepared for a fight after reading this thread, but was pleasantly surprised that it worked the first time with no problems. ;)

    #40227

    In reply to: wp-signup vs register

    tamphet
    Participant

    Fresh install could be a fix. But would it be nice to understand the issue.

    I saw many people using custom theme get the same issue, it posted all over the forums. I checked all sites currently running BP. The result is if it does not use BP-theme, the signup page points to wp-signup.php instead of register.

    Could this be a BP’s bug?? or Because the theme used does not design for WPMU?

    Curriousity…..

    #40189
    Andy Peatling
    Keymaster

    Change /wp-content/member-themes/ to /wp-content/bp-themes

    https://buddypress.org/forums/topic.php?id=1675

    #40185
    dheerajsingh
    Member

    I have posted the solution on this thread

    https://buddypress.org/forums/topic.php?id=1696

    #40183

    In reply to: Require Login

    dheerajsingh
    Member

    You can have a look at this thread for new user moderation

    https://buddypress.org/forums/topic.php?id=1696

    #40176

    You can currently use the bbGroups plugin by BurtAdsit to do this with group forums. He’s paused integration for other Extended Profile fields and non-group forums for now, but that is the closest integration available currently.

    Take a look over at http://code.ourcommoninterest.org/

    Science Content!


    The problem with doing it any other way right now, is that without grabbing and caching forum specific BuddyPress profile info and putting it into a convenient user_meta array, it would require an additional query into the database for each user that you want each piece of info for. So lets say you not only want the avatar, but their fullname, and another piece of profile info that you’ve made up. That’s three queries a person, per post, per page. A page with 10 posts just gave you 30 extra queries. The bbGroups plugin works great to counter act this, but I’ve been the primary beta tester experiencing hiccups and Burt has patiently been trouble shooting with me to figure out why. The past week life has sort-of halted my ability to test, but it is a priority for me to address.

    #40173
    Gibcosta
    Participant

    unfortunately this did not work for me, i’d also like to use one wpmu install and run multiple separate domains with buddypress on a subdomain and bbpress, using the inove theme.

    see my post on wpmu forum

    https://mu.wordpress.org/forums/topic.php?id=11695#post-70149

    jayemes
    Participant

    Thanks for the feedback guys. What I’ve resolved to do was code a new WP blog template to be used exclusively for the blogs on the site while using the default BP for the member pages, similar to the setup of http://testbp.org/

    I originally wanted to use BP’s beautifully-created default theme for both the member pages and the blogs, but apparently this cannot be done (which I find shocking)…unless you want to hard-code the BP template. I would do this but it’s simply out of my league and I wasn’t able to find the help on the forum on how to do this.

    I signed up for a test account with http://testbp.org and found they aren’t even using the default BP theme for blogs but a generic WP blog theme. I’m surprised because part of the appeal of using BP is that all the components are nicely integrated both in design and functionality. Using the default WP theme for the blog breaks the design aspect and makes the functionality that much more difficult to do for frontend guys like myself.

    I’m going to stick with WPMU/BP for now and hope a plugin is made that remembers widget positions for all blogs created, thus allowing me to stick with the default BP theme for blogs, or a non-widgetized version of the default BP theme. I would pay for that to be done and I might have to look into that rather than create a whole new theme for my blogs that doesn’t even keep the look and feel of BP.

    #40160

    In reply to: wp-signup vs register

    tamphet
    Participant

    Kunkel

    I am not so sure about .htacess.

    But apparently this is an issue without solution.

    I saw many post on this forums around this issue, but none of them come to the resolution. May be there is a resolution but they did not come back and post the solution on this forum.

    Will see if someone can provide some answer.

    #40136
    Burt Adsit
    Participant

    Sounds like a job for wpmu forums. It would really get more attention there from those people who have lots of wpmu experience: https://mu.wordpress.org/forums/

    #40129
    Burt Adsit
    Participant
    #40097
    rbl
    Participant

    Just for future reference, here’s the best post I’ve found there:

    https://bbpress.org/forums/topic/simple-integration-tip-for-new-registration#post-17359

    Ricardo

    #40091
    mspecht
    Participant

    Hi Kelly,

    Each blog uses it’s own theme so you will need to write your own actions to do this similar to https://mu.wordpress.org/forums/topic.php?id=8041 and http://premium.wpmudev.org/forums/topic.php?id=653 would be my guess.

    #40083
    mspecht
    Participant

    You could always roll your own, https://buddypress.org/forums/topic.php?id=1651

    #40025
    Adam W. Warner
    Participant

    Hey benny148148, followed you here from the “other” forum;)

    Here’s the thread I was referencing earlier regarding this same issue on my install (all default)… https://buddypress.org/forums/topic.php?id=1315

    However, at the end of the day, there is no solution. One of the BP gurus here, Burt Adsit, was helping me troubleshoot and referenced a possible fix, but didn’t know if it was to be put in trac as a bug fix. I’ve messaged him through my BP install, but haven’t heard back.

    I checked trac and didn’t see any reference to this issue. Hopefully other will chime in with a fix.

    #40021

    In reply to: nginx re-write rules

    Per Søderlind
    Participant

    I’m using this one (found it on mu.wordpress.org/forums). I’m having problems creating new blogs, but I’m not sure if it’s nginx causing the problem (it works fine with wpmu):

    server
    {

    listen 80;
    server_name DOMAIN.COM *.DOMAIN.COM;

    access_log /usr/local/nginx/logs/DOMAIN.COM.access.log;
    error_log /usr/local/nginx/logs/DOMAIN.COM.error.log;

    # rewrite rule for files

    location ~* ^.+.(xml|jpg|jpeg|gif|png|ico|css|zip|tgz|gz|rar|bz2|doc|xls|exe|pdf|ppt|txt|tar|mid|midi|wav|bmp|rtf|js|swf)$
    {
    root /home/web/DOMAIN.COM/www;
    rewrite ^/files(/.*)$ /wp-content/blogs.php?file=$1 last;
    expires 10d;
    break;
    }

    # rewrite rule for sitemap under the lines that handles upload files

    rewrite ^(.*/)?sitemap.xml wp-content/sitemap.php;

    # rewrite errors

    location /
    {
    #auth_basic "Restricted";
    #auth_basic_user_file /etc/nginx/htpasswd;
    root /home/web/DOMAIN.COM/www;
    index index.php;
    error_page 404 = /index.php?q=$uri;
    }

    #send php requests to fast cgi

    location ~ .php$
    {
    fastcgi_pass 127.0.0.1:9000;
    fastcgi_index index.php;
    fastcgi_param SCRIPT_FILENAME /home/web/DOMAIN.COM/www$fastcgi_script_name;
    include /usr/local/nginx/conf/fastcgi_params;
    }

    }

    #40019
    nicolagreco
    Participant

    dont touch the code!

    Hacking the code is the last thing that you’ve to do with bp :)

    (I’m from mobile now, so i cant see it now) I’m sure that posts excerpts or forums ones have a filter, use them!

    after you’ve found the filter, use it writing a function to cut text, as i’ve done for forums and add that as filter.

Viewing 25 results - 19,326 through 19,350 (of 20,260 total)
Skip to toolbar