Search Results for 'buddypress'
-
AuthorSearch Results
-
February 19, 2010 at 1:02 pm #64129
In reply to: Using Twire with trunk-r2459
Peter Hofman
ParticipantYou should check this out

Like twire only then for activity stream.
https://buddypress.org/forums/topic/tweetstream-twitter-plugin-beta-testers-needed
February 19, 2010 at 12:59 pm #64128In reply to: 1.2 plug-ins list
Peter Hofman
ParticipantAnother bp1.2 plugin

https://buddypress.org/forums/topic/tweetstream-twitter-plugin-beta-testers-needed
February 19, 2010 at 12:33 pm #64120In reply to: BuddyPress-Links 0.3 FINAL is here at last
Windhamdavid
Participant[19-Feb-2010 07:15:53] WordPress database error You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ’12:15:53 – date_created ) / 60 ) / vote_total ) WHERE popularity <= 16777214 AND’ at line 1 for query UPDATE wp_bp_links SET popularity = FLOOR( FLOOR( ( 2010-02-19 12:15:53 – date_created ) / 60 ) / vote_total ) WHERE popularity <= 16777214 AND vote_total >= 1 made by do_action_ref_array, call_user_func_array, bp_links_recalculate_popularity_for_all, BP_Links_Link->popularity_recalculate_all
February 19, 2010 at 12:16 pm #64117In reply to: BuddyPress-Links 0.3 FINAL is here at last
Ashish Kumar (Ashfame)
Participant1. Creating a link goes blank but the link was created
2. Accessing the admin section of a created link too goes blank
3. Activity link of voting goes blank too
February 19, 2010 at 12:03 pm #64116In reply to: BuddyPress-Links 0.3 FINAL is here at last
Windhamdavid
Participantnice work! ~ complete integration, the javascript for the edit fields, the votes, the options including custom theme and the rich media embed.
February 19, 2010 at 11:53 am #64115In reply to: Tweetstream (twitter plugin) Beta testers needed!
Ashish Kumar (Ashfame)
ParticipantI didn’t understand.
Is it for tweeting everythning on my BuddyPress to a twitter account or what?
February 19, 2010 at 11:52 am #64114In reply to: oEmbed for BuddyPress plugin – out now!
Windhamdavid
Participantbp + wp trunk ~ “Plugin could not be activated because it generated 1 characters of unexpected output” ~ nothing in my php_error.log
February 19, 2010 at 11:32 am #64113In reply to: BuddyPress-Links 0.3 FINAL is here at last
jamesjones
ParticipantExcellent work ! Best plugin i have seen for BP.
February 19, 2010 at 11:24 am #64112In reply to: Missing Content Within Website
Andy Peatling
KeymasterInstall the backwards compatibility plugin, also, read the upgrade instructions.
https://wordpress.org/extend/plugins/buddypress-backwards-compatibility/
https://codex.buddypress.org/getting-started/upgrading-from-10x/
February 19, 2010 at 11:21 am #64111In reply to: How to return to BuddyPress 1.1.3
Andy Peatling
KeymasterInstall the backwards compatibility plugin and your theme should work.
February 19, 2010 at 11:18 am #64110In reply to: oEmbed for BuddyPress plugin – out now!
Andy Peatling
KeymasterDoesn’t seem to do anything on my test installs either.
February 19, 2010 at 10:55 am #64108In reply to: oEmbed for BuddyPress plugin – out now!
Ashish Kumar (Ashfame)
ParticipantIts not working for me either!
I added my subdomain to whitelist too
February 19, 2010 at 10:34 am #64106In reply to: How to return to BuddyPress 1.1.3
zageek
ParticipantI have determined my problem is due to the fact that I upgraded to 1.2 and my custom these is 1.1.x compatible.
Where can I find a guide for what needs to be changed in my theme to make it 1.2 compatible, because when I go to my site it doesnt show the frontpage anymore but goes straight to the Groups Page.
I can’t even view some of the other pages either.
February 19, 2010 at 10:01 am #64100In reply to: BuddyPress-Links 0.3-RC is out
Anton
ParticipantIf you go the link page of a specific link and no one has added any comments yet, it shows that their is no activity found on the link. Even if you voted for the link and that activity is displayed on the main activity feed for the site.
February 19, 2010 at 9:56 am #64098In reply to: oEmbed for BuddyPress plugin – out now!
bennyticklez
MemberI installed on WP single 2.9.1, BP 1.2 and the plugin is not working. I added a youtube link into the “Post update” activity box and it just posts the link. Not the actual video.
i added the whitelist code to bp-oembed-config.php with my domain name included but it didn’t change anything.
I am not getting any errors either. most bizarre!
February 19, 2010 at 9:45 am #64097In reply to: New BuddyPress 1.2 default theme
still giving
ParticipantJust downloaded and installed 1.2 release and I get the same error message as above.
Fatal error: Call to undefined function bp_is_front_page() in /usr/home/example/public_html/wp-content/themes/bp-default/header.php on line 47
Nothing shows. Only the blue header and the error message.
Try all the obvious.
February 19, 2010 at 9:15 am #64095Dainismichel
ParticipantIf there’s a programmer out there willing to share the code and procedure for getting this done, without plaguing the forums here, please get in touch. I work well with programmers and would like some time on Skype to find out what code needs to go where. Please PM me a price and the approximate time you think we would need.
February 19, 2010 at 9:11 am #64093Dainismichel
ParticipantI’d like to find a programmer who can show me how to do this via skype and provide the appropriate code and procedure. Please PM me your price.
February 19, 2010 at 9:11 am #64092In reply to: Default Activity Streams Are Backwards IMHO
Nick Watson
Participantin bp-activity-templatetags.php within the buddypress plugin folder, I found the following ‘scopes’:
if ( 'just-me' == $scope || 'friends' == $scope || 'groups' == $scope || 'favorites' == $scope || 'mentions' == $scope ) {Each of these has a case and it discribes which scope needs to grab each activity feed.
So now all we need to know is how to set a scope within lets say the “activity-loop.php” in your theme folder and then it will grab the “friends” scope and the “friends” activity feed.
I don’t know how or where to call the scope but I’m going to take a wild guess and say that it’s here:
<?php if ( bp_has_activities( bp_ajax_querystring( 'activity' ) ) ) : ?>Within activity-loop.php.
Let me know if this helped, or just confused everyone.
Thanks
February 19, 2010 at 8:46 am #64089In reply to: oEmbed for BuddyPress plugin – out now!
r-a-y
KeymasterI’m going to test this tomorrow.
But in the meantime, can you post any errors from your server log?
It could be memory-related.
Also can you try opening bp-oembed-config.php and adding your BP domain to the $bp_oembed[‘whitelist]’ array?
If you have BP installed on hxxp://example.com, you would put:
$bp_oembed['whitelist'] = array('<a ','">','<a>','example.com');February 19, 2010 at 8:40 am #64088In reply to: Convert a WordPress Theme to a BuddyPress Theme
armandmorin
ParticipantQuestion… I’ve got my theme working that did it. Thanks.
My theme DOES NOT show the nav bar like in the default BuddyPress theme. I tried copying the code from the header section of the BuddyPress theme, but I got a function error after.
Any ideas of how to add the BuddyPress Nav to the theme?
February 19, 2010 at 7:24 am #64086In reply to: oEmbed for BuddyPress plugin – out now!
modemlooper
Moderatordoes not work on WP single 2.9.2 no auto embed and the permalink page ends up blank. Also you can only deactivate plugin via deleting folder. Hitting deactivate in admin causes white page
February 19, 2010 at 7:15 am #64083In reply to: How to return to BuddyPress 1.1.3
Paul Wong-Gibbs
KeymasterThis is gonna be really tricky especially if you didn’t backup your DB. Have you tried running 1.2 with the Backwards Compatibility Plugin?
February 19, 2010 at 5:52 am #64080In reply to: How to return to BuddyPress 1.1.3
r-a-y
KeymasterBP 1.1.3 is available here:
https://trac.buddypress.org/changeset/2745/tags/1.1.3?old_path=%2F&format=zip
Upgrading instructions available here:
https://codex.buddypress.org/getting-started/upgrading-from-10x/
February 19, 2010 at 3:38 am #64074In reply to: Missing Blog 1 In Admin Bar
r-a-y
KeymasterThis is related to this thread:
https://buddypress.org/forums/topic/nothing-appearing-under-my-blogs
I’m afraid there isn’t a definitive answer yet.
-
AuthorSearch Results