Plugin forum plus
The plugin adds to forums pages the following options:
-Fast insert posrer’s nick in the reply form
-Quote selection text without reloading the page
-Quote whole post without reloading the page, if there is no selected text
-Quick-edit messages without reloading the page
-Quick-delete messages without reloading the page
-Includes a reply form on every page.
All options are set individually in the admin panel.
Поблагодарили: 76 раз
Поблагодарили: 5 раз
The only thing which worked was that you could type a replay on any page, but all those "quick" functions were not there.
Any special installation instructions? I am using 0.6.2
Поблагодарили: 76 раз
или заменить на "ответ добавлен, но это ни есть гуд"
Поблагодарили: 5 раз
When you enable the "Quick paste quotes (selected text) in reply textarea :" the quote system goes fubar.
Normally a link ( " # " ) will be added in front of the posters name with below it the quoted text.
But if you enable the above setting the url will not be added and nested quotes are added too making a quote unreadable.
I made a full test with this so if you want I can show some screenshots so you can see what will happen.
Поблагодарили: 7 раз
Большое спасибо! Отличный плагин!
Поблагодарили: 7 раз
Если чуть-чуть модернизировать функцию QuotSel , то в цитату будет добавлена ссылка на сообщение-источник:
function QuotSel(name, quoteid, textareaname)
{
var txt = GetSel();
var txtid = trim($('#'+quoteid).text());
if (txt=='' || !(txtid.indexOf(txt) + 1))
{
txt = txtid;
}
postid = (quoteid.slice(5));
txt='[quote='+name+']'+ '[url=forums.php?m=posts&id='+ postid +']#'+ postid + '[/url]\n\n' + txt + '[/quote]' + '\n\n';
$('textarea[name='+textareaname+']').focus();
$.markItUp({
replaceWith:txt
});
return false;
}
А под Siena как запустить?