Search Results for 'buddypress'
-
AuthorSearch Results
-
December 8, 2010 at 5:58 pm #100102
In reply to: Multiple Budypress Networks, one install
roydeanjr
ParticipantSeems to me that ANY plugin, buddypress or otherwise, should have to respect the site_id designation in order to be WPMU or WP3.0 Network certified.
I installed WPMU and buddypress after reading that buddypress was wpmu compatible. Now we find that it really isn’t.
How far off is this capability?
December 8, 2010 at 3:28 pm #100097In reply to: Hard code link in BP Admin Bar?
katemgilbert
ParticipantUPDATE: I used the plugin: here to add a link to my admin bar, and it works.
2nd question – How do I dynamically include the logged in user’s username in the URL that I’m adding?
For example, I am adding the link to /members/[USERNAME]/blogs/, where USERNAME is the logged in user’s username. I have tried inserting the php calls for wp_get_current_user(); , echo $current_user; and echo $username; , but none work.
December 8, 2010 at 1:40 pm #100095In reply to: Link to users blog.
PhillipSonderskov
MemberWorks like a charm!

Thanks man! and thank you @sbrajesh
December 8, 2010 at 12:45 pm #100093In reply to: Link to users blog.
Bowe
ParticipantI think placing the following code at the bottom of functions.php of your child theme should do the trick:
`
/* Creates Blog navigation for Accordeon Menu */
function my_blog_menu(){
global $bp;
if ( !is_user_logged_in() || !function_exists(‘bp_blogs_install’) )
return false;
//two lines from bp_adminbar_blogs_menu() in bp-core-adminbar.phpif ( !$blogs = wp_cache_get( ‘bp_blogs_of_user_’ . $bp->loggedin_user->id . ‘_inc_hidden’, ‘bp’ ) ) {
$blogs = bp_blogs_get_blogs_for_user( $bp->loggedin_user->id, true );
wp_cache_set( ‘bp_blogs_of_user_’ . $bp->loggedin_user->id . ‘_inc_hidden’, $blogs, ‘bp’ );
}if ( is_array( $blogs ) && (int)$blogs ) {
$blog=array_pop($blogs);//the first blog
?>
<a href="siteurl; ?>”>`
After you’ve put this in your functions.php add the following to sidebar.php to call the function:“`
Thanks to @sbrajesh for this snippet
December 8, 2010 at 9:29 am #100087In reply to: WPML.ORG / BP Multilingual Plugin Support
Bowe
Participant@hackcafejapan: you make a great impression as a new member here on BP.org! Just spamming and shouting on 4 topics in a row. I think we all get your point now! You know what, I’ll start spending all my free time on creating something extremely complicated as a multilanguage solution for BuddyPress. Thanks for motivating me and many others by being so vocal and rude with your requirements. Please don’t think for any minute that you need to contribute anything else besides spamming and complaining.
I’ll keep you updated about my progress!
ps: I can’t write a single line of code so it might take a while.
December 8, 2010 at 9:22 am #100085ajaxmac
Participant@hackcafejapan there’s nothing stopping you from doing it. Perhaps you should stop using ALL CAPS, and contribute to the open source project before you criticise it?
December 8, 2010 at 8:49 am #100084hackcafejapan
MemberI can’t believe there is no multilanguage plugin for buddypress this is 2010 almost 2011 everything is multilingual nowadays. GET IT DONE…YESTERDAY!!! Multilingual should be core on everything!
December 8, 2010 at 8:45 am #100083In reply to: WPML.ORG / BP Multilingual Plugin Support
hackcafejapan
MemberI can’t believe there is no multilanguage plugin for buddypress this is 2010 almost 2011 everything is multilingual nowadays. GET IT DONE…YESTERDAY!!! Multilingual should be core on everything!
December 8, 2010 at 8:44 am #100082In reply to: BuddyPress Multilingual
hackcafejapan
MemberI can’t believe there is no multilingual plugin for buddypress this is 2010 almost 2011 everything is multilingual nowadays. GET IT DONE…YESTERDAY!!! Multilingual should be core on everything!
December 8, 2010 at 8:33 am #100081In reply to: Problem with Language for plugin
hackcafejapan
MemberMultilingual plugin needed yesterday!!! This is 2010 almost 2011 I can’t believe there is no multilanguage plugin for buddypress every other aspect works with wpml + wpmu
December 8, 2010 at 8:31 am #100080In reply to: simple language switcher plugin
hackcafejapan
MemberMultilingual plugin needed yesterday!!! This is 2010 almost 2011 I can’t believe there is no multilanguage plugin for buddypress every other aspect works with wpml + wpmu
December 8, 2010 at 8:30 am #100079In reply to: BuddyPress 1.2 and multilanguage
hackcafejapan
MemberMultilingual plugin needed yesterday!!! This is 2010 almost 2011 I can’t believe there is no metalanguage plugin for buddypress every other aspect works with wpml + wpmu
December 8, 2010 at 8:06 am #100076@mercime
ParticipantBP Codex is your friend. Disable the custom header functionality on the default BuddyPress theme … add the following to your wp-config.php file:
`define( ‘BP_DTHEME_DISABLE_CUSTOM_HEADER’, true );`December 8, 2010 at 7:15 am #100074In reply to: PHP help links in bp_core_add_message
ewebber
ParticipantHi @r-a-y thanks for the message, but that seems to return the variable as plain text too, hmmmm?
December 8, 2010 at 6:22 am #100070In reply to: Sign up and activation issues
opensourcelover
Memberthanks for the update @techguy. I think I’m okay with spam also, but just want the text “Check your email for activation” to stand out.
December 8, 2010 at 4:21 am #100068In reply to: Ban and Kick User is Broken
December 8, 2010 at 4:16 am #100067In reply to: Ban and Kick User is Broken
Virtuali
ParticipantThanks @r-a-y.
I have no idea how to add a patch…. no idea.
And I am using 1.2.5 because 1.2.6 gives me more problems than I can imagine
December 8, 2010 at 3:53 am #100066anindyaray
Memberthanks @mercime
actually I was using this .
“
and it was creating the problem , now after I removed this line , its all ok ….but the other problem I mentioned about unable to change the default-header.jpg image from the default.css #header , it still persist …
can you please show me some light ?
December 8, 2010 at 3:09 am #100064In reply to: Is this possilbe with BuddyPress?
techguy
ParticipantCheck out the BP Media plugin and other event plugins in: https://buddypress.org/extend/ See if they meet your needs or not. I know the media plugin for example has been working on some major caching of the images, so it might be fine for you. Try it out and see.
There’s a BP job group where you can post a request for a WP/BP developer to help you with the project: https://buddypress.org/community/groups/bp-jobs-board/
December 8, 2010 at 2:42 am #100061In reply to: Ban and Kick User is Broken
r-a-y
KeymasterThanks for noting the problems!
Added a potential fix here:
https://trac.buddypress.org/ticket/2661December 8, 2010 at 1:36 am #100056In reply to: Embedded Video not Displaying on Homepage
r-a-y
KeymasterTry reading up on enabling a third-party provider for WordPress’ embedding capability:
https://codex.wordpress.org/Embeds#How_Can_I_Add_Support_For_More_Websites.3FIf you want to use Wistia code, which I’m guessing you need to use the “ or “ tags, you’ll need to bypass the activity filters that are in place by default, so malicious content will not get the chance to be executed.
If you trust your userbase, you can disable these filters by reading this:
https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/make-users-able-to-use-and-in-their-postsIf you’re planning on just embedding the Wistia video on a blog post, just enable some form of WordPress plugin that allows you to embed content like this:
https://wordpress.org/extend/plugins/embed-object/December 8, 2010 at 1:29 am #100055In reply to: Ban and Kick User is Broken
Virtuali
Participant@yakster, I also have this issue with my groups.
Same with deleting users….. It’s not my plugins causing problems.
maybe @hnla, @mercime, @r-a-y @boonebgorges, or @apeatling, @crashutah, @DJPaul, could assist us.
December 8, 2010 at 1:04 am #100053In reply to: Citizen Kane Theme white space
stoi2m1
ParticipantYour best bet is to modify the css for the theme. I use Fifefox with the plugin Firebug. This allows you to highlight different sections of the site and see its styling and modify till you get things right and then apply that to your actual code.
Your problem is not buddypress related and is better suited in a html/css forum.
December 7, 2010 at 11:10 pm #100049In reply to: Is this possilbe with BuddyPress?
doodlz
MemberThanks for responding. Yes, storage and hosting are definitely concerns.
And I’m not sure if this is the right place, but do you (or anyone else) know where I can find WP/BP developers for help with this scenario?
December 7, 2010 at 10:21 pm #100046hugo
Participantyes i do see the fields with ie they just dont work, put file and nothing happens, no thumbnails, no files, no links, while same file with chrome or firefox uploads fine to the post
-
AuthorSearch Results