Search Results for 'buddypress'
-
AuthorSearch Results
-
December 30, 2010 at 1:36 pm #101535
In reply to: How to change the word blogs to sites
@mercime
ParticipantDecember 30, 2010 at 8:18 am #101530In reply to: Editing Creat New Blog Signup
@mercime
ParticipantDecember 30, 2010 at 5:18 am #101526In reply to: Cannot post new topic on forum
mttorley
MemberI am also having this problem on a brand new WP/BuddyPress/ GenesisConnect:StudioPress installation.
Groups Create, Forum Topics do not.
December 30, 2010 at 3:55 am #101523In reply to: Important Buddypress Function not working
@mercime
ParticipantYou can post here as well: https://buddypress.org/community/groups/bp-jobs-board/forum/
December 30, 2010 at 3:41 am #101522In reply to: Adding A Link To Profile Homepage
@mercime
Participant@peternemser no, because it is not in the default theme.
If you prefer, create a child theme of bp-default theme https://codex.buddypress.org/theme-development/building-a-buddypress-child-theme/, then copy the header.php of the bp-default theme into your child theme folder, then add this in `
- `
`
<li class=”selected”>
<a href="” title=””>`
The benefit of the “custom code” in functions.php is that you don’t have to copy over the header.php to your child theme folder.
December 30, 2010 at 3:17 am #101520In reply to: Important Buddypress Function not working
yeggermuffin
MemberI will like pay somebody to help me fix this.
December 30, 2010 at 3:15 am #101519In reply to: Adding A Link To Profile Homepage
peternemser
MemberI want to add this the link to buddypress with out adding custom code. Is this not possible?
December 30, 2010 at 1:53 am #101518In reply to: Adding Register Notice to Admin Bar?
@mercime
ParticipantDecember 30, 2010 at 1:27 am #101516In reply to: “My Favorites” Plugin
kateM82
Member@justbishop. I got it working
Here is what I did in BP-newb terms:
Created a blank php doc in the wp-content/plugins folder named bp-custom.php
(You need to set up this blank doc with this: http://pastebin.com/GM269f2H)
Between that paste :
http://pastebin.com/Ct0HZV00Then in the single.php of your these paste the following where you want the favourites to show
Then just copy over the CSS from the normal favourites button and you should be good to go, I hope…
PS – you can view it on my site here – http://members.dropdeadgorgeousdaily.com
haven’t tried adding it to other sites on the MU install, fingers crossed that works too!
December 30, 2010 at 1:09 am #101514In reply to: Adding A Link To Profile Homepage
December 30, 2010 at 1:03 am #101513@mercime
ParticipantDecember 30, 2010 at 12:05 am #101510@mercime
ParticipantThe weird thing is that the BP Activity component link is working while the Members and Groups component links are not working.
Do you have any membership plugin turned on which requires Is_user_logged in?
If you change theme to bp-default theme are the links to Members and Groups working?December 29, 2010 at 11:53 pm #101509In reply to: Important Buddypress Function not working
yeggermuffin
MemberThis is making me mad beyond belief. I have done everything, @r-a-y.
I am not using 1.2.6, or 1.2.7, I am using 1.2.5
December 29, 2010 at 11:29 pm #101508Dolphus
Memberi change to server linux, good now
December 29, 2010 at 11:14 pm #101507December 29, 2010 at 11:12 pm #101506In reply to: Child Theme question
modemlooper
ModeratorI would add it as a sub domain then. You could do a different install all together or put your WP install into multisite mode and use the instructions in the link below.
https://codex.buddypress.org/getting-started/install-buddypress-on-a-secondary-blog/
December 29, 2010 at 10:47 pm #101504In reply to: Change word ‘Activity’ by ‘wall’ for example
@mercime
Participanthttps://codex.buddypress.org/extending-buddypress/changing-internal-configuration-settings/
`define ( ‘BP_ACTIVITY_SLUG’, ‘wall’ );`for the rest: https://codex.buddypress.org/extending-buddypress/customizing-labels-messages-and-urls/
December 29, 2010 at 9:23 pm #101497In reply to: Any plugin/hack to allow update space in top bar?
modemlooper
ModeratorYou can use the code from plugins/buddypress/bp-themes/activity/post-form.php to cobble a post form on other areas of a site.
December 29, 2010 at 9:04 pm #101496ensentidocontrario
MemberThanks Mercine, but it does not work
any other ideas?December 29, 2010 at 7:30 pm #101491In reply to: Would anyone use Video Chat and Buddypress?
Anointed
ParticipantI would be interested to hear more about the project. I already run 123flashchat software, and absolutely love it. It is not currently integrated into bp, but it could be. I run a flash comm cluster in order to use the video chat and live video broadcasting. I would warn people first, that bandwidth is a huge issue with video.
December 29, 2010 at 6:57 pm #101490In reply to: How to disable Gravatar completely?
scabadaska
MemberHi @BuddyPresser,
I would like to add to Javier’s @arques post above. His method does work but it’s missing the initial sign-up screen where gravatar is being pulled. I also rewrote his path a bit. This should do the trick for killing all Gravatar calls. If someone has more time than I it would be great to have this in plugin form. Here is the code:
`
function bp_remove_gravatar ($image, $params, $item_id, $avatar_dir, $css_id, $html_width, $html_height, $avatar_folder_url, $avatar_folder_dir) {$default = get_stylesheet_directory_uri() .’/_inc/images/bp_default_avatar.jpg’;
if( $image && strpos( $image, “gravatar.com” ) ){
return ‘
‘;
} else {
return $image;}
}
add_filter(‘bp_core_fetch_avatar’, ‘bp_remove_gravatar’, 1, 9 );function remove_gravatar ($avatar, $id_or_email, $size, $default, $alt) {
$default = get_stylesheet_directory_uri() .’/_inc/images/bp_default_avatar.jpg’;
return ““;
}add_filter(‘get_avatar’, ‘remove_gravatar’, 1, 5);
function bp_remove_signup_gravatar ($image) {
$default = get_stylesheet_directory_uri() .’/_inc/images/bp_default_avatar.jpg’;
if( $image && strpos( $image, “gravatar.com” ) ){
return ‘
‘;
} else {
return $image;
}}
add_filter(‘bp_get_signup_avatar’, ‘bp_remove_signup_gravatar’, 1, 1 );
`The image that I am referencing doesn’t have to be a JPG. The size is 150×150. You may have to adjust the file name and/or path to your liking.
Thanks @arques for the initial code!
December 29, 2010 at 6:20 pm #101488In reply to: Would anyone use Video Chat and Buddypress?
josh101
ParticipantTeam up with a host that can do it. like make a deal with them where they will host your plugin user then your plugin user pay for the hosting. How much would it cost if there just hosting the video and thats it. Im looking for a video chat.
December 29, 2010 at 6:19 pm #101487In reply to: Adding Register Notice to Admin Bar?
Twig
MemberSorry, I didn’t respond earlier, but I’ve been out of the country.
@mercime thanks for the help, but I’m apparently being very dumb.
Could you possibly throw in an example alternate code? Anything really, doesn’t matter. Everything I try I get:
Parse error: syntax error, unexpected ‘<' and similar.December 29, 2010 at 5:38 pm #101485Hugo Ashmore
ParticipantOne approach might be to configure php.ini to use the smpt localhost and port lines (i.e uncomment) and set an explicit sendmail_from address or simply configure sendmail,
I’ve never had an issue with sending email reg confirmations from a test environment but then I scrabbled around and worked out how to configure ‘fake sendmail’ which essentially amounted to stating a true smtp server to use e.g my main email account.
This is one of those issues that is not really application based necessarilly but more server OS oriented and finding a solution may be quicker focusing on these aspects rather than WP/BP and perhaps trying in a WAMP forum? or XAMPP? for a solution?
December 29, 2010 at 5:17 pm #101484johnsamwallace
MemberNice of you to congratulate yourself for solving the problem. However, these posts show up on search results so it would be good protocol for you to explain your solution. Cheers!
-
AuthorSearch Results
