15.04.2017, 12:01
Witam, zainstalowałem na forum plugin MyProfile wszystko pięknie ale zauważyłem ze jest brak przycisków Delete i Approve.
A jak dodaje przycisk z myprofile_comments_comment_delete to działa ale za to nie usuwa komentarza, wyświetla że usunięto komentarz a on nadal jest.
Jakieś pomysły?
myprofile_comments_comment_delete
myprofile_comments_comment
A jak dodaje przycisk z myprofile_comments_comment_delete to działa ale za to nie usuwa komentarza, wyświetla że usunięto komentarz a on nadal jest.
Jakieś pomysły?
myprofile_comments_comment_delete
Kod PHP:
[php]
<form action="misc.php" method="post" style="display: inline;">
<input type="hidden" name="my_post_key" value="{$mybb->post_code}" />
<input type="hidden" name="action" value="comments-delete" />
<input type="hidden" name="cid" value="{$comment['cid']}" />
<input type="hidden" name="memberuid" value="{$comment['userid']}" />
<button class="comments-delete comments-action button" style="font-size: 11px;">{$lang->mp_comments_action_delete}</button>
</form>
myprofile_comments_comment
Kod PHP:
<tr width="100%" data-cid="{$comment['cid']}">
<td class="trow2 {$trow_class}" rowspan="2" style="text-align: center; vertical-align: top;" data-cid="{$comment['cid']}">
<img src="{$avatar_src}" {$avatar_width_height} alt />
</td>
<td style="height: 20px;" class="trow1 {$trow_class}" width="100%" data-cid="{$comment['cid']}">
{$profile_link} <small style="font-size: 10px;">({$date} - {$time}) <em>{$comment_private}</em></small><br />
<span style="font-size: 10px;" data-cid="{$comment['cid']}">
{$comments_approve}
{$comments_delete}
{$comments_reply}
{$comments_edit}
{$comments_report}
</span>
</td>
</tr>
<tr>
<td class="trow2 comment_message scaleimages {$trow_class}" style="max-width: 400px; overflow: hidden;" data-cid="{$comment['cid']}">
{$message}
</td>
</tr>