Search Results for 'buddypress'
-
AuthorSearch Results
-
April 15, 2010 at 11:56 am #73628
In reply to: Buddypress and WordPress 3.0 Beta
adyba
ParticipantHave you guys tested the fresh installation?
Im about to test this scenario:
1) WP 2.9.x
2) BP install (current state)
3) Upgrade WP to WP3.0b
4) Go to multisite network
5) Refresh BP
Does anybody some strong recomendation (like DONT DO IT
?
April 15, 2010 at 10:25 am #73624In reply to: Seo for Buddypress 1.0 beta
Sven Lehnert
Participantyou are right! Sorry for this bug. I just tested it with one forum topic.
new version 1.0.5 beta is out now. Should be fixed now.
Thanks alot for testing.
April 15, 2010 at 10:21 am #73622In reply to: Add you blog search to the search
b_stewart
MemberTo integrate the BuddyPress Events plugin (bp-events) to the search is very similar to the code Pedro posted.
on bp-core-tempaltetags.php change this:
function bp_search_form_type_select() {
// Eventually this won't be needed and a page will be built to integrate all search results.
$selection_box = '<select name="search-which" id="search-which" style="width: auto">';
if ( function_exists( 'xprofile_install' ) ) {
$selection_box .= '<option value="members">' . __( 'Members', 'buddypress' ) . '</option>';
}to this:
function bp_search_form_type_select() {
// Eventually this won't be needed and a page will be built to integrate all search results.
$selection_box = '<select name="search-which" id="search-which" style="width: auto">';
$selection_box .= '<option value="events">' . __( 'Events', 'buddypress' ) . '</option>';
if ( function_exists( 'xprofile_install' ) ) {
$selection_box .= '<option value="members">' . __( 'Members', 'buddypress' ) . '</option>';
}and on bp-core.php
change this:
if ( !$slug || empty( $slug ) ) {
switch ( $search_which ) {
case 'members': default:
$slug = BP_MEMBERS_SLUG;
$var = '/?s=';
break;to this:
if ( !$slug || empty( $slug ) ) {
switch ( $search_which ) {
case 'members': default:
$slug = BP_MEMBERS_SLUG;
$var = '/?s=';
break;
case 'events':
$slug = BP_EVENTS_SLUG;
$var = '/?s=';
break;Hopefully that helps someone out.
April 15, 2010 at 9:59 am #73620In reply to: Search can´t tell the difference between O and Ö
Karin Johansson
Participant*LOL*, no, buddypress does not handle Swedish very well…. I meant to say Östergötland…
April 15, 2010 at 8:38 am #73615In reply to: BuddyPress Forum Move Topic 0.0.1
finni3
ParticipantWow! Really usefull hack! Thanks a lot. Hopefully it will be made into a plugin or a part of the core
April 15, 2010 at 6:45 am #73611In reply to: Buddypress and WordPress 3.0 Beta
idotter
Participantfor me it works too
April 15, 2010 at 6:13 am #73610In reply to: Codex page spammed?
Paul Wong-Gibbs
KeymasterHave seen this before. Not sure how it’s done, revision history appears to be misleading. I’ve sent a message to Andy Peatling as a heads-up.
April 15, 2010 at 6:07 am #73609In reply to: Buddypress and WordPress 3.0 Beta
Paul Wong-Gibbs
KeymasterThe upcoming 1.2.4 release will be tested/fixed to work with WordPress 3.0. Current version is not guaranteed to work.
April 15, 2010 at 5:27 am #73605In reply to: BuddyPress Forum Move Topic 0.0.1
3sixty
Participantthanks guys, I’m happy to help, but I’m an amateur coder and I’ve never done a plugin before. I’ve seen the wp codex entry on creating plugins but am just trying to get my own site up and running at the moment. If any of you can suggest a “how to write a plugin” shortcut that would be great.
I just had a revelation tonight that it would be relatively trivial to extend this to topic merge and topic split, completing the “holy trinity” of forum manipulation.
It also seems that wp hacks are becoming a lost art – I tried to make the code paste-able, and simple as possible, so you could just grab it immediately and run with it? Is it not working for you?
April 15, 2010 at 4:56 am #73604In reply to: BuddyPress Forum Move Topic 0.0.1
modemlooper
ModeratorSerious! Need this BAD! I’m tempted to can the forum directory new topic dialog because I stated a few months back people will start posting in the wrong groups and it’s happening quit frequently.
April 15, 2010 at 4:48 am #73602In reply to: BP Album+ || New Features Requests and Discussion
foxly
ParticipantRe:”Am impressed with the plugin,so far and awaiting below because users are using smartphones like Iphone & android more for internet .”
The plugin *already does* what we just described. The functions, and documentation on what they do, are located in:
bp-album-templatetags.php
sub-album-templatetags.php
sub-media-templatetags.php
sub-meta-templatetags.php
This is a situation where I can’t post a block of code for you that magically does what you want.
You’ll need to select the right functions for your application from the X-templatetags.php files, and write code that uses them to output the correct data for your template.
I really don’t want to sound like one of those “elite” programming types that won’t show others how to do stuff, but honestly, the wordpress codex site does a *much* better job of teaching how to do this stuff than I could ever achieve writing forum posts.
Start here: https://codex.wordpress.org/Stepping_Into_Templates
And then here: https://codex.buddypress.org/how-to-guides/building-a-buddypress-child-theme/
And if you need to learn how to use PHP, go here: http://www.php.net
Also, be sure to use a proper code editor, which you can get here: http://www.netbeans.org …if you’ve never used a “smart” editor before, the experience could be life-changing…

Enjoy!
^F^
April 15, 2010 at 4:41 am #73601In reply to: Seo for Buddypress 1.0 beta
modemlooper
ModeratorWhen you choose %%forumtopictitle%% Replaced with current forum topic title
It shows the latest forum topic title for ever forum topic. So every Forum topic will have the same browser title. Definitely NOT SEO.
April 15, 2010 at 3:46 am #73597In reply to: Forum Ranking System
mrjarbenne
ParticipantThe Rate Forum Posts Plugin https://wordpress.org/extend/plugins/buddypress-rate-forum-posts/ does something like this. You would need to tweak it a bit to aggregate the three tiers you are looking for, but it’s a start.
April 15, 2010 at 3:42 am #73596In reply to: Display specific profile fields
mrjarbenne
ParticipantYou could use the Custom Profile Filters for Buddypress plugin. I know it’s not exactly what you are looking for, but it would enable you let your users identify themselves in one of your 5 categories, then that word they have selected will become a link that will take them to a page will all of the other users who also selected that category.
Perhaps this plugin will give you the building blocks you need to create the solution you need.
https://wordpress.org/extend/plugins/custom-profile-filters-for-buddypress/
April 15, 2010 at 3:35 am #73594In reply to: Updated using automatic update now site is hosed
mrjarbenne
ParticipantBefore updating buddypress you should always deactivate any plugins that require BP in order to work.
At this point the only solution I have would be to go in through FTP and remove any offending BP plugins from wpcontent/plugins. You don’t have to delete them necessarily, just get them out of the plugins folder and refresh your site. Copy them into a folder on your desktop so you can re-establish your plugins after you have finished the upgrade.
Once you have the upgraded version running, then start to rebuild your plugins by pulling them back in to the plugins folder (again via FTP), then reactivate them (ensuring that BP is active before you enable BP specific plugins) one by one in the plugins menu under admin until you are back in business.
April 15, 2010 at 3:28 am #73592In reply to: monetizing buddypress??
avi-m
ParticipantThanks P
I will take a look but I’m really not a coder so it may be beyond my abilities.
April 15, 2010 at 3:05 am #73589In reply to: BuddyPress-Links 0.4.x Releases and Support
stwc
Participant@stwc Profile sharing is a way to “copy” someone else’s link into your own link list. Let me know if you have any ideas on how to make that more obvious.
Ah, OK. Maybe just a change of wording then, or hide that My Profile radio button if I’m the link creator?
April 15, 2010 at 2:58 am #73586In reply to: BuddyPress Group Tags is now available
Dwenaus
Participant@Wildrot – good idea, but the tag adding interface would have to be much improved, which would be a fair amount of work. If you are interested in doing it, please join in and help code it.
April 15, 2010 at 2:38 am #73583In reply to: BuddyPress Forum Move Topic 0.0.1
paulhastings0
Participant@3sixty, I hope you’re able to turn it into a plugin. I know that it would come in handy and quite useful for users out there.
April 15, 2010 at 2:36 am #73582@mercime
ParticipantBuddyPress can be utlized in different ways for different projects … a social networking tool … an organizational tool … a management tool … and so much more. .
Thank you for BuddyPress
April 15, 2010 at 2:35 am #73580paulhastings0
ParticipantSo following the plugin bunny trail that we’re on I’m going to throw my shoe out there.
BP is/was a group of plugins. When I install BP I’m not actually installing one plugin. I’m actually installing 7: Activity, Blog Tracking, bbPress Forums, Friends, Groups, Private Messaging, and Extended Profiles.
If BP can provide the best, fastest, most extensible core hooks and loops, then let the plugin developers code and extend to their hearts desire.
if (BP Core == diving board)
plugin authors = the bells and whistles of BP
The way I see it, there should be 3 classes of plugins.
1. The Core BP plugins (i.e. currently the 7 components… this list will increase, such as Basic Privacy).
If you’re not running all or most of these, then you’re not really running BP.
The BP is officially “in charge” of keeping these plugins updated.
2. The Senior Plugins (e.g. Media-Albums, Oembed for Activity Streams, BP SEO, Enhanced Privacy etc.)
These are plugins that almost 65% (or some other number) of sites will end up using but we’re not sure that they will.
BP officially endorses and most likely will use their paid developers to keep these plugins functional.
3. The Normal Plugins (e.g. GEO Locations, Extended Profiles, Gifts, etc.)
Plugins that authors create for different purposes. While many sites use them, they don’t have the same widespread use and support as the Senior Plugins.
BP has no official position with respect to these plugins.
Currently only category 1 and 3 exist. There is no category 2.
April 15, 2010 at 2:01 am #73573In reply to: Seo for Buddypress 1.0 beta
paulhastings0
ParticipantWe haven’t updated to the latest version but everything so far seems to be going well.
April 15, 2010 at 1:59 am #73572In reply to: monetizing buddypress??
paulhastings0
ParticipantYou may find this plugin useful: https://wordpress.org/extend/plugins/ozh-who-sees-ads/
I believe you’ll need to edit the different template pages to have the ads display… I could be wrong on that though. It’s been a while since I’ve played around with it. It may now just require moving some widgets around.
April 15, 2010 at 1:44 am #73569In reply to: BuddyPress-Links 0.3 FINAL is here at last
5887735
InactiveIs there a way to set the widget default to newest?
April 15, 2010 at 1:43 am #73568In reply to: BuddyPress-Links 0.3 FINAL is here at last
5887735
InactiveJust tested on the live site and there was no conflict. Not sure why.
-
AuthorSearch Results