Search Results for 'forum'
-
AuthorSearch Results
-
March 18, 2009 at 1:46 pm #40292
In reply to: Widget avatars loose links after ajax call
Burt Adsit
Participantsgrunt, 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
March 18, 2009 at 1:39 pm #40289In reply to: Widget Assignment Incorrect
Burt Adsit
ParticipantI 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.
March 18, 2009 at 9:58 am #40271In reply to: How to hide/delete “Forum” link in Group sidebar?
edliu
ParticipantOK Thanks Marco72
March 18, 2009 at 9:50 am #40270In reply to: How to hide/delete “Forum” link in Group sidebar?
Marco72
ParticipantIf you use Firefox add the Web Developer toolbar. It saves me a lot of time when I need to understand how things work .
March 18, 2009 at 5:57 am #40263In reply to: Admin bar at top of page
Matt Kern
ParticipantMarch 18, 2009 at 3:37 am #40259In reply to: limit 1 blog per user
produlz
ParticipantI 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 »', '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 »"));
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 ENDI hope it help!
Thank you for all dev team!
March 17, 2009 at 10:14 pm #40255In reply to: Restricting User Creation of Groups
nicolagreco
ParticipantMarch 17, 2009 at 10:04 pm #40254In reply to: Facebook connect
danielfelice
ParticipantHave you guys not seen the BP/WP FB Connect Andy modified?
March 17, 2009 at 7:21 pm #40245In reply to: Forum Integration: HELPING HINTS
Lance Willett
ParticipantNot sure if I’m late to the game on this one, but I followed the instructions in the
bp-forumsdirectory (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.
March 17, 2009 at 5:28 pm #40227In reply to: wp-signup vs register
tamphet
ParticipantFresh 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…..
March 17, 2009 at 9:35 am #40189In reply to: members names disappeared in member lists
Andy Peatling
KeymasterChange /wp-content/member-themes/ to /wp-content/bp-themes
March 17, 2009 at 8:06 am #40185In reply to: Moderate Users and New Blogs
dheerajsingh
MemberI have posted the solution on this thread
March 17, 2009 at 7:51 am #40183In reply to: Require Login
dheerajsingh
MemberYou can have a look at this thread for new user moderation
March 17, 2009 at 5:20 am #40176In reply to: Show BP Avatars in bbPress
John James Jacoby
KeymasterYou 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.
March 17, 2009 at 3:14 am #40173In reply to: Blogs with custom domains
Gibcosta
Participantunfortunately 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
March 16, 2009 at 11:29 pm #40167jayemes
ParticipantThanks 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.
March 16, 2009 at 9:08 pm #40160In reply to: wp-signup vs register
tamphet
ParticipantKunkel
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.
March 16, 2009 at 5:25 pm #40136In reply to: Cant create member blogs
Burt Adsit
ParticipantSounds 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/
March 16, 2009 at 4:58 pm #40129In reply to: home page = blogs (how do i fix??)
Burt Adsit
ParticipantMarch 16, 2009 at 4:29 am #40097In reply to: bbPress creates a back door
rbl
ParticipantJust 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
March 16, 2009 at 12:51 am #40091In reply to: Am I Missing Something? – Blog Sidebar
mspecht
ParticipantHi 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.
March 15, 2009 at 11:50 pm #40083In reply to: How do you make members & group private
mspecht
ParticipantYou could always roll your own, https://buddypress.org/forums/topic.php?id=1651
March 14, 2009 at 11:40 pm #40025In reply to: Activation Not Working!
Adam W. Warner
ParticipantHey 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.
March 14, 2009 at 10:48 pm #40021In reply to: nginx re-write rules
Per Søderlind
ParticipantI’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;
}
}March 14, 2009 at 10:38 pm #40019In reply to: Hacking site wide activity…
nicolagreco
Participantdont 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.
-
AuthorSearch Results