Facebook-style Micropublisher works great with Facebook-style Statuses and is one of the coolest "new" drupal modules. Statuses are lightweight for database but statuses also can have their own page like nodes. Problem is that in my case this is not out of the box solution. So again i made some hacking :-)
I wanted status attacmhments to lead to status page when clicked. So i had to change how it is linked. I changed fbsmp.module one line in function fbsmp_render_attachment this one
$attachment->data['page_url']='statuses/'.$attachment->sid;
so now the code would be, and this would make it link to status page, and with that i made custom pinterest clone solution here http://pribadaca.com/
function fbsmp_render_attachment($attachment) {
if (!is_object($attachment)) {
$attachment = fbsmp_load($attachment);
}
$output = '';
if ($attachment) {
$function = fbsmp_load_function($attachment->type, 'themed attachment');
if ($function) {
//ddedit
$attachment->data['page_url']='statuses/'.$attachment->sid;
$output = $function($attachment);
}
//Invoke the hook_fbsmp_render_attachment_alter().
drupal_alter('fbsmp_render_attachment', $output, $attachment);
}
return $output;
}