Search Results for 'buddypress'
-
AuthorSearch Results
-
December 7, 2010 at 9:55 am #99982
In reply to: Buddypress installed on Windows Server
Hugo Ashmore
ParticipantYou really should search before posting, rather than have us do it

this is most likely a mod_rewrite / .htaccess issue o in this instance on a windows server a lack of mod_rewrite.
It is a question that crops up many times, try this link for some info and follow it’s links as well.
https://buddypress.org/community/groups/installing-buddypress/forum/topic/rewrite-issues-page-not-found/The WP Codex also has advice on url rewriting in particular on windows servers.
December 7, 2010 at 9:48 am #99981In reply to: is it encoding issue?
imjscn
Participant@cliffxuan, thanks for the tip!
I’ve been searching for a solution but no luck till read your post. Now I’ve got things showing correctly.
By the way, I think bp developers can solve the problem by watching the difference between activity update and forum post. Activity pages can show things correctly without the setting of utf8_general-ci while forum pages can’t.
Anyway, now I got things right, thanks again
December 7, 2010 at 8:19 am #99977In reply to: How do I add a logo?
techguy
ParticipantI did find a couple other options. Not exactly what you mentioned, but they might work for you:
Showing the last image uploaded to the BP Media plugin: https://buddypress.org/community/groups/bp-album/forum/topic/limiting-photos-shown-and-also-how-to-display-latest-uploaded-photo-on-users-profile/The latest BP Oembed plugin was working to support embedded image in the profile: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-allow-user-to-upload-image-with-a-field-in-profile/ Basically, users could put a link to a flickr image (or other oembed enabled site) and the image would appear in their profile.
December 7, 2010 at 8:17 am #99976Hugo Ashmore
ParticipantHave you tried to install it? Are there specific issues that have arisen?
There is some issue at present with this plugin whereby the original author is, I think. in dispute with another that he claims has copied his code and released thus the download for the original hasn’t been available, so not sure what version you have or whether this issue has been resolved.
December 7, 2010 at 8:04 am #99971In reply to: Change order of Groups?
techguy
ParticipantHere’s the documentation for the various filters available for the Groups Loop: https://codex.buddypress.org/developer-docs/custom-buddypress-loops/the-groups-loop/
There’s a number of ways to skin it. You could do 2 loops on the same page and just check each group to see if it should be in the featured list of groups or not. The other is to use one of the above filters. groups-loop.php is the file you’ll probably want to look at.
December 7, 2010 at 7:00 am #99966In reply to: Numeric usernames
ewebber
Participant@suchaqd – yes I have already done that, but it’s a bit manual
@crashutah – I am guessing it is to do with spam – I will think about whether or not to do it, thanks.
December 7, 2010 at 6:33 am #99968In reply to: Change “Group” to something else
Hugo Ashmore
Participant@nit3watch wp-config is not a file that gets overwritten otherwise everyones site would go down every time one upgraded
Adding Constants to wp-config is an method set out in the codex as is bp-custom, not that I like adding bp stuff to wp-config particularly.@PiManIII you should always check the documentation and do a quick search first as it’s a subject that crops up often have a look through the bp codex as there is a page on this subject. (scroll to bottom)
https://codex.buddypress.org/extending-buddypress/customizing-labels-messages-and-urls/
December 7, 2010 at 6:28 am #99967nit3watch
ParticipantMaybe @hnla could help you though as he just finished the members profile maps plug-in
December 7, 2010 at 6:24 am #99964nit3watch
ParticipantI tried “Geocode the address so the use doesn’t need silly cords” but thats beyond me..
Im stopped developing it as @msmalley ‘s gPress is around the corner ( http://gpress.my/blog/whats-happening-with-gpress-wheres-gpress-0-2-5/ )
December 7, 2010 at 6:23 am #99963Hugo Ashmore
Participant@pcwriter go for it, it’s there to be used if it suits the purpose. – API keys were always a pain

@leguis08 Glad it works.
@gunju2221 It is very possibly a custom theme issue, a custom theme will have to have ensured that the correct action hooks exist in pages as the main maps are fed through to the page via these, you could test with the widget instead which was provided really so that site admins could place the map in more refined custom widitised areas of the members profile pages if they existed.
When writing something like this you can only account for that which is known thus the included stylesheet is there simply to try and style the map if it’s dropped into bp-default, therefore those styles may not have relevance to a custom theme, especially where that theme may be heavily modified, however the basic styles are worked on elements and element id’s/classes that should exist in any theme.
The other aspect of course is that you must have created that extended profile field and named it ‘location’ and existing users will then need to actually edit their profile to add an address or partial address for the map to display, if a user hasn’t filled this item in then the map does not display at all.
December 7, 2010 at 6:05 am #99962In reply to: Profile tab dropdown menus
ajaxmac
ParticipantHI – I was wanting to do the same thing , and made my own functions from the two mentioned here:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/how-to-edit-user-and-options-navThen edited my template files to create my own sidebar and call my function:
/* / Create nested navigation items / <hr class="bbcode_rule" /> */ function my_bp_get_nav_nested() { global $bp, $current_blog; /* Loop through each navigation item */ foreach( (array) $bp->bp_nav as $nav_item ) { /* If the current component matches the nav item id, then add a highlight CSS class. */ if ( !bp_is_directory() && $bp->active_components[$bp->current_component] == $nav_item ) { $selected = ' class="current selected"'; //Get the sub-navigation items if currently selected $subnav_item = my_bp_get_options_nav() ; } else { $selected = ''; $subnav_item = '' ; } /* If we are viewing another person (current_userid does not equal loggedin_user->id) then check to see if the two users are friends. if they are, add a highlight CSS class to the friends nav item if it exists. */ if ( !bp_is_my_profile() && $bp->displayed_user->id ) { $selected = ''; if ( function_exists('friends_install') ) { if ( $nav_item == $bp->friends->id ) { if ( friends_check_friendship( $bp->loggedin_user->id, $bp->displayed_user->id ) ) $selected = ' class="current selected"'; } } } /* echo out the final list item */ echo apply_filters( 'bp_get_loggedin_user_nav_' . $nav_item, '<li id="li-nav-' . $nav_item . '"><a id="my-' . $nav_item . '" href="' . $nav_item . '">' . $nav_item . '</a></li>', &$nav_item ) . $subnav_item ; } /* Always add a log out list item to the end of the navigation */ if ( function_exists( 'wp_logout_url' ) ) { $logout_link = '<li><a id="wp-logout">root_domain ) . '">' . __( 'Log Out', 'buddypress' ) . '</a></li>'; } else { $logout_link = '<li><a id="wp-logout">root_domain . '">' . __( 'Log Out', 'buddypress' ) . '</a></li>'; } echo apply_filters( 'bp_logout_nav_link', $logout_link ); } /* / Edited bp_get_options_nav() to return a string / rather than printing directly to screen / <hr class="bbcode_rule" /> */ function my_bp_get_options_nav() { global $bp; if ( count( $bp->bp_options_nav[$bp->current_component] ) < 1 ) return false; /* Loop through each navigation item */ foreach ( (array)$bp->bp_options_nav[$bp->current_component] as $subnav_item ) { if ( !$subnav_item ) continue; /* If the current action or an action variable matches the nav item id, then add a highlight CSS class. */ if ( $subnav_item == $bp->current_action ) { $selected = ' class="current selected"'; } else { $selected = ''; } /* echo out the final list item */ $subnav_item_render = $subnav_item_render . apply_filters( 'bp_get_options_nav_' . $subnav_item, '<li id="' . $subnav_item . '-personal-li"><a id="' . $subnav_item . '" href="' . $subnav_item . '">' . $subnav_item . '</a></li>', $subnav_item ); } return '<ul class="subnav">' . $subnav_item_render . '</ul>' ; }December 7, 2010 at 4:50 am #99957In reply to: Is this possilbe with BuddyPress?
Mike
ParticipantYep, you can definitely do this with WP/BP. But as far as photo albums/videos go, you’ll definitely want to figure out the storage/hosting part, because it sounds like your users might be playing with loads of data.
December 7, 2010 at 3:43 am #99955en3r0
Member@nit3watch That works great! Thanks!
Would you be interested in improving it a little more? I would like to, but probably could use a bit of help.
Two main things I would like to do:
1. Geocode the address so the use doesn’t need silly cords.
2. Display map of all groups.Shouldn’t be too hard?
December 7, 2010 at 3:05 am #99954In reply to: Way to disable admin bar on certain themes?
pcwriter
ParticipantThe adminbar is triggered by the call to wp_footer. So make sure that call is present in your theme.
December 7, 2010 at 2:19 am #99951In reply to: What do you think of the feature?
6625531
InactiveBuddyPress boasts an ever growing array of new features developed by the awesome plugin development community. Some of most popular BuddyPress plugins currently available are:
December 7, 2010 at 1:11 am #99947Virtuali
ParticipantI tried the plugin, although it does not show up in the profile?
Must be because I am using custom theme
December 7, 2010 at 1:06 am #99946December 7, 2010 at 12:57 am #99945In reply to: Getting Buddypress Functions in to Custom Theme
Virtuali
ParticipantSounds like you need to add the JS into the file in your theme.
December 7, 2010 at 12:52 am #99943Virtuali
ParticipantCan users delete their own accounts? If they can’t, then we know where the problem lies.
Try creating a test account, and then try deleting it under buddypress. (account —> Settings —> Delete account)
December 6, 2010 at 11:01 pm #99936pcwriter
ParticipantGoody! I’d like to incorporate this into my new theme framework (coming along nicely…). That is, if you don’t mind credit and some link love

I couldn’t figure out how to do it without the key but, now it looks doable. Thanks a bunch!December 6, 2010 at 8:56 pm #99930In reply to: Getting Buddypress Functions in to Custom Theme
luvs
Member@hnla,really, the only thing wrong is the “@% is a unique identifier for % that you can type into any message on this site. % will be sent a notification and a link to your message any time you use it.”
All I need to know is how to get that working.
Thanks so much!
December 6, 2010 at 8:43 pm #99929In reply to: How to make pages ……….
JL Faverio
MemberCan I have members capable of making pages on their own? For instance, they swish to create a page about a topic, and diplay their imagery and some notes etc. Not a blog, but it would still need to be accessible to that member, and only that member (and admins of course).
Can this be done using BuddyPress? The theme I am using is FishBook, thanks.
December 6, 2010 at 8:35 pm #99927In reply to: Getting Buddypress Functions in to Custom Theme
Hugo Ashmore
ParticipantIt’s a child theme if the style.css or primary stylesheet that must live in theme root has ‘Template: bp-default’ sitting amongst the other details at the top, not sure how things work with these template pack conversions as I don’t use it, either creating a child theme from scratch or full theme.
I’m guessing everything works correctly if you tried the default bp theme, so not sure what’s wrong.
December 6, 2010 at 8:15 pm #99926Hugo Ashmore
ParticipantDecember 6, 2010 at 8:01 pm #99925reinard
MemberSame problem, tried it all. WP 3.0.2, actual BuddyPress, no plugins (BP of course…). I can’t add anything. Have de-/activated BP for several times. Adding posts is working well.
-
AuthorSearch Results