Forum Replies Created
-
I’m working on Widgets too, on bpdev..
(i think we’ve to discuss in burtadsit’s topic on bpdev but here it’s the same)
As soon as possible i will write a post to how to customize and create own widgets
both the first and the second link works well.. try download it directly here http://buddypressdev.org/download/3
Yes, use firebug!
UPDATED, i wrote an example plugin that works without adding files in member-theme

You can find a small post here http://buddypressdev.org/forums/topic.php?id=7
That explain a bit about this example extending component that i called bpdev-example
I forgot, here you can download bpdev-example : http://buddypressdev.org/plugins/bpdev-example
I’m sorry. So, i think that you don’t need add files in /member-theme/ because you can write your plugin without adding files in /member-theme/ for example you can write:
function test_page_settings() {
global $current_user, $bp_settings_updated, $pass_error;
add_action( 'bp_template_title', 'test_page_title' );
add_action( 'bp_template_content', 'test_page_content' );
add_action( 'bp_template_content_header', 'test_page_tabs' );
bp_catch_uri('plugin-template');
}
function test_page_title() {
_e( 'Hello title', 'buddypress' );
}
function test_page_content() {
global $bp, $current_user, $bp_settings_updated, $pass_error; ?>
<p>Hello Content</p>
<?php
function test_page_tabs() {
global $bp, $create_group_step, $completed_to_step;
?>
<ul class="content-header-nav">
<li>Hello Tabs</li>
</ul>
<?php } ?>With that you don’t need to add page in /member-theme/. I think that users that install a plugins want only add files on mu-plugins/.
Think if i’ve another member-theme that isn’t like the default, and i would like add this plugin..
I hope i explain well now
I think that you don’t need using page to add in your member theme :S look plugin-template.php
eheheh, now i understand your sarcasm. Next time try to use smiles like
If at the beginning you add
require_once( 'bp-core.php' );it should workI’ve just registred an account, sendme your e-mail, and the nick you want on notsecurity at gmail
@dimensionmedia, i’m working for aggregator, here a picture: http://img385.imageshack.us/img385/6578/aggregatorlg7.jpg
i think tomorrow i will release basic code
Good Work!!
i write a post on it, too http://buddypressdev.org/starting-developing/starting-writing-a-extending-component-with-bp-test/
I added your plugin here http://buddypressdev.org/plugins/bp-test/
slaFFik, i’m working on it now.. check your spam, i will activete your account..
I don’t understand what you said, if you think this topic it’s not good for the community, delete it.. (if you said that)
If trent send it to me, i will add it on the plugins directory, that i will open tomorrow at http://buddypressdev.org
Here my BuddyPress Developers’ Community http://buddypressdev.org/

I hope it will be usefull
So, i’ve said it to some people interested on irc. So, i can do this plug-in, but for doing it, i decide to attend next version of buddypress because in that, andy will put photo album feature, so doing a video feature, will be easier..
I will update users about my and other plugin via this site http://buddypressdev.org/
I’m working on a feed importer plug-in with simple pie
Interesting..
I think you should post it also in http://buddypressdev.org/forums/ (a BuddyPress Community for developers)
in mu-plugins plugin are automatically active
Yes i understand… If i can, today i will creat a Social Network Integration Plugin (if i can!)
it sounds great… read last 3d about Group Forum Widget.. there i speake about a feed aggregator plugin..
if i were you, i wont use widget in this case. i would create a loop to show last post
(i use prologue theme too on one of my buddypress installation, and i highly hacked that theme!!)
as i said..
use feed or seach for bbpress plugins, as trent plugin..
but i think that creating a plugin to include in user/group a feed box that shows last item published on a feed is useful, for example, inserting a twitter account feed will shows last twits on profile,
yes i think tomorrow i will work for it..
ok i understand, you want a thing like activity, but that shows only the activity of group forums (all forum or only one?) but it’s simple too..
you could use feed for example tomorrow i will check for it..