Search Results for 'buddypress'
-
AuthorSearch Results
-
March 23, 2010 at 12:45 am #69749
arezki
ParticipantQuick note: This plugin basically has it all, except it is old and out of sync with the latest BP. Should be a terrific start:
http://webdevstudios.com/support/wordpress-plugins/buddypress-registration-options/
March 23, 2010 at 12:07 am #69745In reply to: BuddyPress and WordPress 3.0
Robert
MemberJust made another test.
Now I’ve installed BuddyPress after upgrading to WP 3.0 alpha.
Same result: browse image > upload > image doesn’t show but by clicking in crop it’s uploaded to the folder. The avatar place is empty (the text “Avatar Image” is displayed).
March 23, 2010 at 12:03 am #69744In reply to: BuddyPress and WordPress 3.0
Andrea Rennick
ParticipantAh, okay. I know there were issues with this 2-3 weeks ago. I’ll see if I can go find out what’s up.
March 22, 2010 at 11:31 pm #69743In reply to: Facestream (Facebook plugin)
thirdnote
MemberTried using my WB-FB-AuitoConn API keys and still same error, so it seems the error is not on facebooks side, since WB-FB-AutoConn works great
‘Fatal error: Uncaught exception ‘FacebookRestClientException’ with message ‘Session key invalid or no longer valid’ in /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php:3374 Stack trace: #0 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php(1819): FacebookRestClient->call_method(‘facebook.users….’, Array) #1 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facestream.php(372): FacebookRestClient->users_setStatus(‘this should aut…’, ‘1.0000012430197…’) #2 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facestream.php(339): facestream_facebookIt(‘this should aut…’) #3 [internal function]: facestream_activityToFacebook(‘this should aut…’) #4 /home/content/g/n/o/gnowels5a33qb/html/wp-includes/plugin.php(166): call_user_func_array(‘facestream_acti…’, Array) #5 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/buddypress/bp-activity/bp-activity-classes.php( in /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php on line 3374′
March 22, 2010 at 11:27 pm #69740In reply to: Facestream (Facebook plugin)
mlemberg
ParticipantI have the same problem as @MariusOoms – the plugins doesn’t seem to sync from Facebook to Buddypress.
Also, on a side notice, the “To Facebook” text in the update box could do with a bit more with. In my display i gets cut into two lines.
March 22, 2010 at 11:19 pm #69737In reply to: Issue with default groups widget
r-a-y
KeymasterDon’t trial and error functions!
Look in bp-core-templatetags.php to find conditionals.
It takes less than five minutes to do this.
bp_is_my_profile()
bp_is_directory()
bp_is_profile_component()
bp_is_activity_component()
bp_is_blogs_component()
etc.
It’s all there.
[EDIT]
Just updated the conditional template tags page in the codex:
https://codex.buddypress.org/developer-docs/conditional-template-tags/
March 22, 2010 at 11:09 pm #69735In reply to: BuddyPress and WordPress 3.0
Robert
MemberI’ve upgraded using the Beta Testers plugin > Bleeding edge nightlies 4 / 5 hours ago.
March 22, 2010 at 10:53 pm #69733In reply to: Default theme with widgetized home page
modemlooper
Moderatorsomebody asked how to add the login form to the front page.
In widget.php
find:
<div id="third-section" class="widgetHome">add this right after:
<?php if ( is_user_logged_in() ) : ?>
<?php do_action( 'bp_before_sidebar_me' ) ?>
<div id="sidebar-me">
<a href="<?php echo bp_loggedin_user_domain() ?>">
<?php bp_loggedin_user_avatar( 'type=thumb&width=40&height=40' ) ?>
</a>
<h4><?php bp_loggedinuser_link() ?></h4>
<a class="button logout" href="<?php echo wp_logout_url( bp_get_root_domain() ) ?>"><?php _e( 'Log Out', 'buddypress' ) ?></a>
<?php do_action( 'bp_sidebar_me' ) ?>
</div>
<?php do_action( 'bp_after_sidebar_me' ) ?>
<?php if ( function_exists( 'bp_message_get_notices' ) ) : ?>
<?php bp_message_get_notices(); /* Site wide notices to all users */ ?>
<?php endif; ?>
<?php else : ?>
<?php do_action( 'bp_before_sidebar_login_form' ) ?>
<p id="login-text">
<?php _e( 'To start connecting please log in first.', 'buddypress' ) ?>
<?php if ( bp_get_signup_allowed() ) : ?>
<?php printf( __( ' You can also <a href="%s" title="Create an account">create an account</a>.', 'buddypress' ), site_url( BP_REGISTER_SLUG . '/' ) ) ?>
<?php endif; ?>
</p>
<?php if(function_exists('twit_connect')){twit_connect();} ?>
<form name="login-form" id="sidebar-login-form" class="standard-form" action="<?php echo site_url( 'wp-login.php', 'login' ) ?>" method="post">
<label><?php _e( 'Username', 'buddypress' ) ?><br />
<input type="text" name="log" id="sidebar-user-login" class="input" value="<?php echo attribute_escape(stripslashes($user_login)); ?>" /></label>
<label><?php _e( 'Password', 'buddypress' ) ?><br />
<input type="password" name="pwd" id="sidebar-user-pass" class="input" value="" /></label>
<p class="forgetmenot"><label><input name="rememberme" type="checkbox" id="sidebar-rememberme" value="forever" /> <?php _e( 'Remember Me', 'buddypress' ) ?></label></p>
<?php do_action( 'bp_sidebar_login_form' ) ?>
<input type="submit" name="wp-submit" id="sidebar-wp-submit" value="<?php _e('Log In'); ?>" tabindex="100" />
<input type="hidden" name="testcookie" value="1" />
</form>
<?php do_action( 'bp_after_sidebar_login_form' ) ?>
<?php endif; ?>March 22, 2010 at 10:50 pm #69732In reply to: BuddyPress and WordPress 3.0
Andrea Rennick
ParticipantWhich version of WP out of trunk did you use? Was it from the last 2-3 weeks?
March 22, 2010 at 10:29 pm #69728In reply to: FAQ: How To, Code Snippets and Solutions
Gianfranco
ParticipantStandard WP – Getting rid of the “subdirectory” in permalinks when WP is installed in a subdirectory
Create a file called “bp-custom.php” in wp-content/plugins.
Paste this:
function my_bp_override_core_domain() {
$domain = get_bloginfo('url');
return $domain;
}
add_filter('bp_core_get_root_domain','my_bp_override_core_domain');Now, instead of having: mysite.com/subfolder/activity, you have: mysite.com/activity.
March 22, 2010 at 9:30 pm #69715In reply to: Issue with default groups widget
Anointed
ParticipantThank you, worked perfectly!
In case anyone else runs into this issue, here are the changes
bp-groups/bp-groups-widgets.php
line 29:
<?php if ( bp_has_groups( 'type=popular&per_page=' . $instance['max_groups'] . '&max=' . $instance['max_groups'] ) ) : ?>change to:
<?php if ( bp_has_groups( 'type=popular&user_id=""&per_page=' . $instance['max_groups'] . '&max=' . $instance['max_groups'] ) ) : ?>One last question:
I use widget_logic on my sidebars, what is the logic to say ‘is on members profile page’?
Basically I duplicated the groups widget, one with the user logic, and one without. I can use my modified version in the footer, and the old one in the sidebar. That way I can also show what groups the member belongs to.
I only want that widget to show up on buddypress profile pages. I just don’t see the logic statement anywhere.
March 22, 2010 at 9:28 pm #69714In reply to: Facestream (Facebook plugin)
thirdnote
Membergetting the same error as @pedromiguel
could not see any directions for the facebook side of the the setup, just setup facebook to get api info?
I am running fb-connect and another Wordbooker and WP-FB-AutoConn with no issues
Also running tweetstream with no issues:
http://thirdnote.net/activity/ is my connection url in the facebook app
– is that a needed setting, as it is the only one I set up
ok, simply – here is the error code:
‘Fatal error: Uncaught exception ‘FacebookRestClientException’ with message ‘Updating status requires the extended permission status_update’ in /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php:3374 Stack trace: #0 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php(1819): FacebookRestClient->call_method(‘facebook.users….’, Array) #1 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facestream.php(372): FacebookRestClient->users_setStatus(‘lets see if we …’, ‘1.0000012430197…’) #2 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/facestream/facestream.php(339): facestream_facebookIt(‘lets see if we …’) #3 [internal function]: facestream_activityToFacebook(‘lets see if we …’) #4 /home/content/g/n/o/gnowels5a33qb/html/wp-includes/plugin.php(166): call_user_func_array(‘facestream_acti…’, Array) #5 /home/content/g/n/o/gnowels5a33qb/html/wp-content/plugins/buddypress/bp-activity/ in /html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php on line 3374′
March 22, 2010 at 9:26 pm #69713In reply to: Users are not being added to the Main Blog?
r-a-y
KeymasterHope you knew that you didn’t need to move to WPMU for BuddyPress now… you can use standard WP since BP 1.2.
March 22, 2010 at 8:58 pm #69710r-a-y
KeymasterMarch 22, 2010 at 8:37 pm #69708In reply to: Facestream (Facebook plugin)
mlemberg
ParticipantThanks for a GREAT plugin!
I’ve found a small bug I hope you can fix:
When I write an update on Buddypress containing the letters æøå Facebook will convert them to:
æøåMarch 22, 2010 at 8:17 pm #69706In reply to: User related pages redirect to the homepage
r-a-y
KeymasterTry setting the following in wp-config.php:
define( 'BP_ENABLE_USERNAME_COMPATIBILITY_MODE', true );For more info, read this:
https://codex.buddypress.org/how-to-guides/changing-internal-configuration-settings/
March 22, 2010 at 8:11 pm #69705r-a-y
KeymasterHey Ted,
A ticket is already created:
https://trac.buddypress.org/ticket/2137
Also related:
https://trac.buddypress.org/ticket/2055
Bumping ticket to major.
March 22, 2010 at 7:09 pm #69701John Stringfellow
ParticipantFirst of all, I want to thank you all for your help. Sometimes I feel like I am writing to myself when I ask questions here. I am very grateful to have gotten so many responses and such good help!
r-a-y,
I will check into that option. I had used widget logic and one point for another issue, but I never thought about it in this context.
Andrea_r,
I did make a new page and apply that template. That’s why I don’t understand it not working!
Bowe,
I will try your option and see if I can get it working. Does your blog sidebar not show at all? And if it doesn’t show, what is showing in that space, no sidebar and just a wider content section?
John
March 22, 2010 at 6:53 pm #69699In reply to: New version of Forum Attachments for BuddyPress
avi-m
ParticipantHey boon I tired your plugin again and Still not working for me. I think I will just give up this one for a while as it would the cosmos doesn’t want me using it just now.
However I thought I would share the error messages in case they are of use.
Warning: Variable passed to each() is not an array or object in /home/jewsbych/public_html/wp-content/plugins/forum-attachments-for-buddypress/forum-attachments-for-buddypress-bp-functions.php on line 461
March 22, 2010 at 6:18 pm #69698In reply to: Facestream (Facebook plugin)
Pedro Miguel
ParticipantFatal error: Uncaught exception ‘FacebookRestClientException’ with message ‘Updating status requires the extended permission status_update’ in /home/*******s/domains/**********.com/public_html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php:3374 Stack trace: #0 /home/******/domains/**********s.com/public_html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php(1819): FacebookRestClient->call_method(‘facebook.users….’, Array) #1 /home/******************/domains/***********************.com/public_html/wp-content/plugins/facestream/facestream.php(372): FacebookRestClient->users_setStatus(‘Estamos a fazer…’, ‘1.00000551739E+…’) #2 /home/******************/domains/***********************.com/public_html/wp-content/plugins/facestream/facestream.php(339): facestream_facebookIt(‘Estamos a fazer…’) #3 /home/******************/domains/***********************.com/public_html/wp-includes/plugin.php(166): facestream_activityToFacebook(‘Estamos a fazer…’) #4 /home/******************/domains/***********************.com/public_html/wp-content/plugins/buddypress/bp-activ in /home/******************/domains/***********************.com/public_html/wp-content/plugins/facestream/facebook/facebookapi_php5_restlib.php on line 3374
Any clue how to solve this?
(This when sending a mesage from my site)
March 22, 2010 at 5:11 pm #69694@mercime
ParticipantYou can add the code in wp-config.php right after “The Database Collate type…” section of the file
March 22, 2010 at 4:51 pm #69689In reply to: WebClan.de – request for custom design
@mercime
ParticipantBP Child Themes and BP-aware Themes
March 22, 2010 at 4:26 pm #69687In reply to: [New Plugin] BuddyPress Group Forum Extras
chembro303
Memberworks like a charm now! Thanks guys!
March 22, 2010 at 3:49 pm #69679Pancho Perez
ParticipantHi,
John, I can´t find the bp-custom.php on the buddypress plugin folder. Whe I try putting the code of define on the wp-config.php I recive an error os sintax (my be is because i´m not a programmer so don´t know where to write it)
Can you help me?
Cheers!
March 22, 2010 at 3:31 pm #69676Dwenaus
Participanti believe this project is no longer alive. I needed this kind of functionality for groups, so I wrote this plugin: https://wordpress.org/extend/plugins/buddypress-group-tags/
-
AuthorSearch Results