Forum Replies Created
-
In reply to: New Groupblog Plugin
Nice Mariusooms,
i’ll wait the stable release, i’ll run it on a production server when it’s done.
It means i’ll contribute, sending patch with my code

I love gpl
In reply to: New Groupblog PluginIs your plugin compatible with 1.1?
In reply to: How do I create a group?Go on your profile, click on Group, on your profile menu. In the second menu will appear a link with Create Group. Click there.
Or http://yourdomain.com/members/yourmembers_slug/groups/create
In reply to: Site Wide Activity -> extra white space ?It seems to be a bug.
Open a ticket in the trac https://trac.buddypress.org/newticket
In reply to: Trunk – questions on new themeyou have to:
remove bp-themes dir in /wp-content/
you have to copy bp-home & bp-sn-framework in /themes/
activate bp-home
And you will have the new theme.
If you want integrate your theme with bp,
add in the header of your css
/*
[…]
Template: bp-sn-framework
*/
deactivate and reactivate your own theme.
Nicola
In reply to: Wire form as widgetif you share the code we can help you.
In reply to: Use Album Plugin or Wait?That’s the better way to learn dev languages
In reply to: Facebook-esque status updates?Oh yeah Roy is right,
if you’re not a developer and if you’re working on a production site, don’t upgrade, wait the stable release
In reply to: How to pull user_email from database?I replied you here -> https://buddypress.org/forums/topic/listmessenger-or-phplist-integration-plugin?replies=6#post-22429
it’s better using built-in functions
$uid = get_userdata($user_id);
$uid->user_email;
In reply to: Problems in Spanishyou shoud open a ticket in the trac here:
I think that plugin will not work with buddypress 1.1
In reply to: ListMessenger (or PHPlist) integration – plugin?i think is better use built-in function that queries the db to get user info.
Try with
function synchro_mailinglist($user_id, $password, $meta) {
$uid = get_userdata($user_id);
[…….]
$uid->user_email is the e-mail
It’s better use built-in functions because they are safer and they apply the filters and wp actions
In reply to: Only show required fields on signup formYep. jQuery is a good solution, but the code is ever in the page, with that code the label you don’t want is hidden, so it’s still in the page.
Then, it depends if it satisfate you
In reply to: Use Album Plugin or Wait?I suggest to un-expert people to wait, if you know you can write code to port your non-core album to the built-in component, feel free to use the Manoj plugin.
That’s a good plugin, if you know you can, use it!
In reply to: FB Connect Plugin + BP 1.1 and Future?In Italy it’s summer, i’m sure Giovanni will update his plugin when he’ll come back from holidays
Nicola
In reply to: BuddyPress Membership SitesYourMembers plugin with some hacks worked.
In reply to: Facebook-esque status updates?If you update to BP 1.1 the status component is in BuddyPress and does exactly what you’re looking for
In reply to: bbPress migration when BP 1.1 gets released?Don’t worry you can set up the existing bb forum with the BP 1.1.
Maybe you’ll have some problems with the theme.
In reply to: i am getting this error in php_error.logI think you’ve some plugins that breake something, this error happen when ‘bp_adminbar_blogs_menu’ is not declared.
Try to deactivate all plugins and reactive BuddyPress, and update us!
Nicola
In reply to: Problems in SpanishHow does it appear in the forum? (I mean in the forum not in the group side), to know if the bug is in xmlrpc requests or if it’s a bbpress bug
In reply to: HTML tags in group forumsYep. Xml libraries on Linux are broken if olds, this is an old parsing bug..
I’ts a libxml2 stuff, be sure to have everything updated, i had the same problem
As Peter said, with the bp-sn-framework, is simpler, you need to add in the style.css at the top in the comment-header
/*
[….]
Template: bp-sn-framework
*/
deactive your current theme and reactive it again. (Remember it works only with 1.1-svn version).
You have to put css you want in your style.css and they will be applied on the default registration page.
Or you can copy from the bp-sn-framework the register.php to your theme dir, and edit html if needed
Nicola
In reply to: how to create group'slug when make new groupOk, you can use bpdev-groups-extra ( http://bp-dev.org )
add a text field as described in the sample file and then apply a filter on the slug,
i’m not sure it will work.. i will try and update you
In reply to: Tags/Categories for GroupsOk. This post is too old guys, next time try to search before resuming a 7 months post

Let’s close this thread
– Nicola
If you need to deactivate BuddyPress and the problem persist, delete wp-content/plugins/buddypress
but this is not the best way :S Even if BuddyPress hasn’t yet deactivation hook in use..