Search Results for 'buddypress'
-
AuthorSearch Results
-
October 31, 2010 at 7:16 pm #97075
Hugo Ashmore
ParticipantThe reason this is happening is due to the child elements being floated and following proscribed behavior,escaping their parents boundaries, the li item height is less than it’s floated child element thus the li elements can’t float fully to the left as the child element drops below each list bottom edge.
Clearing solves this but also containing floats does and ensures that the parent is forced to extend it’s boundaries to include the floats using ‘overflow:hidden;’
October 31, 2010 at 6:48 pm #97074In reply to: Can BuddyPress Function Like Ning.com
kim reynolds
ParticipantThank you very much for the help. Mercime – do you know anyone that could do this and how much do you think it would cost? Or what about putting the subsites in their own subdomains and add buddypress to each individual subdomain? Thanks,Kim
October 31, 2010 at 6:40 pm #97073In reply to: VaultPress
Paul Wong-Gibbs
KeymasterFrom my enquiries, I believe VaultPress only backs up the regular WordPress tables (i.e. not BuddyPress’).
October 31, 2010 at 6:20 pm #97071Anonymous User 96400
InactiveYou need to clear the list items.
Add `clear:both;` to this style. `ul.item-list li`October 31, 2010 at 6:08 pm #97070In reply to: “Log in” in Admin bar: Page not found
Jeff Lambert
MemberDid you ever figure this out? Just started playing with BuddyPress and have the same issue.
I should add:
WP 3.0.1
BP 1.2.6I’m using child theme of TwentyTen but also tried default BP theme. Issue is definitely with the install directory not being included in the wp-login path.
Thanks
October 31, 2010 at 4:07 pm #97066In reply to: bb_attachments roles for uploading
Boone Gorges
KeymasterI think that ‘read’ is what you’re looking for, though I must admit that I haven’t put much thought into the way that the bbPress permissions translate in BP. That part of the plugin could use some real adaptation to BuddyPress, so that it uses things like `groups_is_user_mod()` rather than `bb_current_user_can()` – or at least a more consistent mapping of BP group permissions to bbPress.
October 31, 2010 at 1:09 pm #97056In reply to: How to show code in forum posts?
Boone Gorges
KeymasterHere’s the code that does it on buddypress.org. It’s basically repurposed from bbPress.
I had to replace the actual backtick with the phrase `[backtick]` so that it would render properly on this forum. Make sure to correct that in your version.
`// Borrowed from bbPress
function bporg_encodeit( $matches ) {
$text = trim($matches[2]);
$text = htmlspecialchars($text, ENT_QUOTES);
$text = str_replace(array(“rn”, “r”), “n”, $text);
$text = preg_replace(“|nnn+|”, “nn”, $text);
$text = str_replace(‘&’, ‘&’, $text);
$text = str_replace(‘<', '<', $text);
$text = str_replace(‘>’, ‘>’, $text);
$text = “$text“;
if ( “[backtick]” != $matches[1] )
$text = “$text
“;
return $text;
}// Borrowed from bbPress
function bporg_decodeit( $matches ) {
$text = $matches[2];
$trans_table = array_flip(get_html_translation_table(HTML_ENTITIES));
$text = strtr($text, $trans_table);
$text = str_replace(‘
‘, ”, $text);
$text = str_replace(‘‘, ”, $text);
$text = str_replace(‘‘, ”, $text);
$text = str_replace(array(‘&’,’&’), ‘&’, $text);
$text = str_replace(”’, “‘”, $text);
if ( ‘' == $matches[1] )
$text = "n$textn";
return "`$text`";
}
// Borrowed from bbPress. Makes code in backticks work, both in forum posts and in activity updates.
function bporg_code_trick( $text ) {
$text = str_replace(array("rn", "r"), "n", $text);
$text = preg_replace_callback("|(`)(.*?)`|", 'bporg_encodeit', $text);
$text = preg_replace_callback("!(^|n)`(.*?)`!s", 'bporg_encodeit', $text);
return $text;
}
add_filter( 'bp_get_the_topic_post_content', 'bporg_code_trick', 1 );
add_filter( 'bp_get_activity_content_body', 'bporg_code_trick', 1 );`October 31, 2010 at 11:15 am #97055In reply to: problems with the feeds of buddypress.org
ovizii
Participantgiven that this guy’s tone was rude: https://buddypress.org/community/groups/miscellaneous/forum/topic/pathetic-functionality-here-on-this-forum/ I nevertheless agree. If only the feeds would work
October 31, 2010 at 10:58 am #97053Paul Wong-Gibbs
Keymaster@hotforwords No, thank you. If you’ve got a working version, we’ll probably just look at it to check everything is up to date and then use it
October 31, 2010 at 10:51 am #97051In reply to: Can BuddyPress Function Like Ning.com
Paul Wong-Gibbs
KeymasterI am not even sure it is possible, but if someone wanted to try to create a plugin to enable this and needed something changed in core, we’d be happy to work with them. There’s been no discussion of this making it into the BP 1.3 release, so if it did, it’d be included in a release next year.
October 31, 2010 at 10:04 am #97049In reply to: TinyMCE for BuddyPress – works for 1.2 as well
Narada Das
ParticipantHey any movement on this in last few months? I just made another post here about the need for tinymce in BP profiles https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/html-on-profile-page-can-it-be-done/#post-77788
October 31, 2010 at 9:50 am #97048In reply to: html on profile page? can it be done?
Narada Das
ParticipantIve spent another couple of hours researching this and other than a plugin by Boone here http://teleogistic.net/2009/12/tinymce-in-buddypress/ and here
http://byronbayblog.com/wp-admin/plugin-install.php?tab=plugin-information&plugin=bp-tinymce&TB_iframe=true&width=640&height=471
– which was only in early stages and has no activity for nearly a year –
I cant find any way to allow html or even better tinyMCE to profile fields.I understand there are some security issues but how come
tinymce is enabled for member posts in the main WP admin area,
its also enabled in the Eventpress plugins event posting –
so why cant it be enabled in profile fields???
Surely this is basic functionality – no?October 31, 2010 at 8:31 am #97047October 31, 2010 at 8:20 am #97046In reply to: Buddypress doesnt really support WP3.x Multisite??
Roger Coathup
Participant@mercime provides some feedback on this on this thread: https://buddypress.org/community/groups/how-to-and-troubleshooting/forum/topic/can-buddypress-function-like-ning-com/
I don’t know what the future plans for BuddyPress are in this regard
October 31, 2010 at 8:18 am #97045In reply to: Pathetic functionality here on this forum
Roger Coathup
ParticipantBuddyPress only has very limited forum support. A bbpress plugin beta was scheduled for Sept 15 but has not materialised yet.
You are right that this site’s support area would be better served by an independent forum implementation. It’s very difficult to follow threads and find previously discussed topics.October 31, 2010 at 7:59 am #97044In reply to: Buddypress doesnt really support WP3.x Multisite??
Narada Das
ParticipantBump – if that works on this dinky excuse for a forum/support/community
October 31, 2010 at 5:27 am #97043@mercime
Participant@sumans you already started a thread about that and r-a-y gave you the answer, changing the_content to the_excerpt
@hotforwords Marina, thanks for sharing your update, will be checking it out in test install for a tutorial.
October 31, 2010 at 5:03 am #97042In reply to: Can BuddyPress Function Like Ning.com
@mercime
ParticipantNo. At this time, there is no BuddyPress Multisite, BP can only be installed in one blog – main site OR one of subsites then track all member information/posts across the multisite installation. Having said that, there’s nothing to prevent a super programmer to code a script for a BP Multisite.
October 31, 2010 at 4:55 am #97041In reply to: Not all themes showing buddypress bar
momsnet
MemberThanks r-a-y – THAT fixed it
October 31, 2010 at 4:35 am #97040In reply to: Users can’t register through BuddyPress home page
Cosmin Z.
Participanthi! do you have a resolution for this issue? It is happening to me too!
I can add a user from my admin WP panel, but cannot register using the /register page: I enter all the data (name, username, etc) click on “Complete Sign Up” – > I’m back to the /register page (all the entered data disappeared)
– I’m using the default theme
– the “allow anyone to register” option IS selected.
– tried it with ALL the plugins disabledthanks
October 31, 2010 at 2:18 am #97038In reply to: Changing BuddyPress Base URL
Kevin Murray
ParticipantI have the same problem as Dudeski. I also get the wordpress installation address, rather than site address. So the home and other buttons don’t work.
October 30, 2010 at 11:07 pm #97034In reply to: Custom CSS Changes
Boone Gorges
KeymasterAre you sure that your custom-sample.css file is actually being included? With a file name like ‘custom-sample’, I’m guessing that it might not be. Check out the theme’s main style.css, and see if there’s an @import rule for custom-sample.css (or if there is a rule in any other imported stylesheet).
I’m not sure how bp-social works (it appears to be a premium theme so I can’t look at the code) but if it is a child of bp-default, then you won’t be able to create a “grandchild” theme so that your changes won’t be overridden – WP doesn’t support that. However, you could fake it by dropping a snippet in your bp-custom.php file that looks something like this:
`function bbg_custom_style() {
$myStyleUrl = WP_PLUGIN_URL . ‘/custom.css’;
$myStyleFile = WP_PLUGIN_DIR . ‘/custom.css’;
if ( file_exists($myStyleFile) ) {
wp_register_style(‘myStyleSheet’, $myStyleUrl);
wp_enqueue_style( ‘myStyleSheet’);
}
}
add_action(‘wp_print_styles’, ‘bbg_custom_style’);`(See https://codex.wordpress.org/Function_Reference/wp_enqueue_style for more info on how to enqueue styles)
Just make sure that you have your custom styles in a file called custom.css in your plugin directory. That should make sure that your styles get loaded, but that they don’t get overwritten by future upgrades to your main theme.
October 30, 2010 at 10:26 pm #97030In reply to: Not all themes showing buddypress bar
Hugo Ashmore
ParticipantOne would have assumed that was the case, partly due to the lack of information provided to us.
I would still not waste the time fixing a theme that wasn’t following a general WP convention.
October 30, 2010 at 9:32 pm #97027jordashtalon
Memberso what does bp_is_my_profile() do? Does it detect if it’s my (the administrators) profile? I also need to detect if it is any moderators profile (I have about 20 moderators).
I was looking through here: https://codex.buddypress.org/developer-docs/buddypress-template-tags/
But I can’t find a function that detects whether they are a moderator or not.
Any ideas?
October 30, 2010 at 8:52 pm #97024In reply to: Not all themes showing buddypress bar
r-a-y
KeymasterYou have to make sure the “ call is in the theme’s footer.php.
If it messes up your layout, try putting it at the very end before the closing “ tag.
-
AuthorSearch Results