MyBB Community Forums

Full Version: Quick Replies & Post Delete Issue
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Whenever I post something via quick replies, it doesn't automatically update the page with the new reply. The text instead stays within the quick reply box. It does go through though, but it just doesn't reload/update the page when posting via quick reply.

The same thing happens when I delete a post. It doesn't reload/update the thread either.. *this is even after a pop-up message says it has been deleted*

I've been working on my forums all day, and its 4 am atm.. I don't know what the issue is atm.

Any help?

[Image: 343e4e395b.jpg]

[Image: 4ab3f8c375.jpg]
you need to provide forum url & a test user account so that someone can check the referred issues
I'll send you one via pm .m.
Thank you .m. for helping me, and for your time!

This has been solved with help from .m. and by Subz1 for the theme Duende V2.

(2015-01-05, 05:22 PM)subzr1 Wrote: [ -> ]all fixed now
ive updated on the mods site build#2
fast reply fixed and also pagination style wasnt visible
both are good now
if anyone have costumize a bit theyre forums here it goes the changes:
replace postbit and postbit classic by this:




{$ignore_bit}
<a name="pid{$post['pid']}" id="pid{$post['pid']}"></a>
<div class="post classic {$unapproved_shade}" style="{$post_visibility}" id="post_{$post['pid']}">
<div class="post_author scaleimages">
 {$post['useravatar']}
 <div class="author_information">
 <strong><span class="largetext">{$post['profilelink']}</span></strong> {$post['onlinestatus']}<br />
 <span class="smalltext">
 {$post['usertitle']}<br />
 {$post['userstars']}
 {$post['groupimage']}
 </span>
 </div>
 <div class="author_statistics">
 {$post['user_details']}
 </div>
</div>
<div class="post_content">
 <div class="post_head">
 {$post['posturl']}
 {$post['icon']}
 <span class="post_date">{$post['postdate']} <span class="post_edit" id="edited_by_{$post['pid']}">{$post['editedmsg']}</span></span>
 {$post['subject_extra']}
 </div>
 <div class="post_body scaleimages" id="pid_{$post['pid']}">
 {$post['message']}
 </div>
 {$post['attachments']}
 {$post['signature']}
 <div class="post_meta" id="post_meta_{$post['pid']}">
 {$post['iplogged']}
 </div>
</div>
<div class="post_controls">
 <div class="postbit_buttons author_buttons float_left">
 {$post['button_email']}{$post['button_pm']}{$post['button_www']}{$post['button_find']}{$post['button_rep']}
 </div>
 <div class="postbit_buttons post_management_buttons float_right">
 {$post['button_edit']}{$post['button_quickdelete']}{$post['button_quickrestore']}{$post['button_quote']}{$post['button_multiquote']}{$post['button_report']}{$post['button_warn']}{$post['button_purgespammer']}{$post['button_reply_pm']}{$post['button_replyall_pm']}{$post['button_forward_pm']}{$post['button_delete_pm']}
 </div>
</div>
</div>


after u need to change some settings on global.css

find in global.css and replace this styles:




.post.classic .post_author {
width: 15%;
position: relative;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4) !important;
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) inset, 0 0 0 1px rgba(255, 255, 255, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) inset, 0 0 0 1px rgba(255, 255, 255, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) inset, 0 0 0 1px rgba(255, 255, 255, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
border: 1px solid rgba(0, 0, 0, 0.25);
color: silver;
float: left;
margin: 0 1% 15px 3px;
padding: 20px 1%;
font-style: normal;
}

.post .post_author {
overflow: hidden;
font-family: Source Sans Pro,Tahoma,Helvetica Neue,Arial,sans-serif;
font-size: 14px;
}

.post .post_author div.author_avatar img {
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4) !important;
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) inset, 0 0 0 1px rgba(255, 255, 255, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) inset, 0 0 0 1px rgba(255, 255, 255, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) inset, 0 0 0 1px rgba(255, 255, 255, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
border: 1px solid rgba(112, 111, 111, 0.25);
position: relative;
border-radius: 4px;
padding: 2px;
}

.post.classic .post_author {
width: 15%;
position: relative;
background: none repeat scroll 0 0 rgba(0, 0, 0, 0.4) !important;
-moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) inset, 0 0 0 1px rgba(255, 255, 255, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
-webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) inset, 0 0 0 1px rgba(255, 255, 255, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6) inset, 0 0 0 1px rgba(255, 255, 255, 0.05), 0 1px 0 rgba(255, 255, 255, 0.1);
border: 1px solid rgba(0, 0, 0, 0.25);
color: silver;
float: left;
margin: 0 1% 6px 3px;
padding: 20px 1%;
font-style: normal;
}

.pagination a {
background: #111 url(../../../images/duende2/topic_button.png) repeat-x top;
border: 1px solid #212121;
border-width: 1px 1px 0 1px;
-moz-border-radius: 2px;
-webkit-border-radius: 2px;
border-radius: 2px;
}

if anybody feels that this is a big deal to do pls send me a pm with site link and test account and ill fix it for u

Cheers all and thanks for all help in this