dimka3210
Легенда
Ковырял от нехрен делать.
viewtopic.tpl
В нужном месте добавить кнопки.
viewtopic.tpl
PHP:
#найти
<!-- IF SPOILER_OPENED -->
<script type="text/javascript">
$(document).ready(function(){ $('div.sp-head').click();
});
</script>
#выше добавить
<script type="text/javascript">
$(document).ready(function(){
$('#myClassJ').live('click',function(){
$('#myClassJm').slideUp(500);
$('.myClassJ').slideDown(2500);
});
});
</script>
#найти таблицу
<table id="topic_quick_reply" class="topic" cellpadding="0" cellspacing="0">...</table>
#и обернуть её в div
<div class="myClassJ"><table id="topic_quick_reply" class="topic" cellpadding="0" cellspacing="0">...</table></div>
В нужном месте добавить кнопки.
PHP:
<div align="center" id="myClassJm"><a href="{U_POST_REPLY_TOPIC}"><button style="width:200px; margin: 3px;">Ответить</button></a>
<button style="width:200px; margin: 3px;" id="myClassJ"><b>Быстрый ответ</b></button> </div>
PHP:
# В main.css в самый конец
.myClassJ{
display: none;
}