2024-05-07, 05:16 AM
2024-05-07, 05:54 AM
I can't reproduce it here, nor in the German support board, nor in my two forums
2024-05-07, 06:33 AM
Okay so I compared my forum with mybb.com and I see that in my Showthread template, I'm missing these two variables
I tried to improvise with these but they didn't work
Does anyone have the correct value for these so I can update my forum?
Thanks in advanced
var thread_deleted = "";
var visible_replies = "";
I tried to improvise with these but they didn't work
var thread_deleted = "{$mybb->settings['thread_deleted']}";
var visible_replies = "{$mybb->settings['visible_replies']}";
Does anyone have the correct value for these so I can update my forum?
Thanks in advanced
2024-05-07, 06:57 AM
showthread template
insert
behind
second change on this template:
for all template changes to check, if they are done on your board, visit: https://www.mybb.de/doku/sonstiges/geaen...1838/1837/
insert
var thread_deleted = "{$thread_deleted}";
var visible_replies = "{$thread['replies']}";
behind
var quickdelete_confirm = "{$lang->quickdelete_confirm}";
var quickrestore_confirm = "{$lang->quickrestore_confirm}";
var allowEditReason = "{$mybb->settings['alloweditreason']}";
second change on this template:
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/thread.js?ver=1827"></script>
to<script type="text/javascript" src="{$mybb->asset_url}/jscripts/thread.js?ver=1838"></script>
for all template changes to check, if they are done on your board, visit: https://www.mybb.de/doku/sonstiges/geaen...1838/1837/
2024-05-07, 07:41 AM
perfect! Thanks for your help!
2024-05-27, 07:59 AM
(2024-05-07, 06:57 AM)bv64 Wrote: [ -> ]showthread template
Saved me, thanks!
2024-09-28, 01:20 PM
(2024-05-07, 06:57 AM)bv64 Wrote: [ -> ]showthread template
insert
var thread_deleted = "{$thread_deleted}"; var visible_replies = "{$thread['replies']}";
behind
var quickdelete_confirm = "{$lang->quickdelete_confirm}"; var quickrestore_confirm = "{$lang->quickrestore_confirm}"; var allowEditReason = "{$mybb->settings['alloweditreason']}";
second change on this template:
to<script type="text/javascript" src="{$mybb->asset_url}/jscripts/thread.js?ver=1827"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/thread.js?ver=1838"></script>
for all template changes to check, if they are done on your board, visit: https://www.mybb.de/doku/sonstiges/geaen...1838/1837/
You are saved me. Thanks.
2025-05-06, 12:28 AM
(2024-05-07, 06:57 AM)bv64 Wrote: [ -> ]showthread template
insert
var thread_deleted = "{$thread_deleted}"; var visible_replies = "{$thread['replies']}";
behind
var quickdelete_confirm = "{$lang->quickdelete_confirm}"; var quickrestore_confirm = "{$lang->quickrestore_confirm}"; var allowEditReason = "{$mybb->settings['alloweditreason']}";
second change on this template:
to<script type="text/javascript" src="{$mybb->asset_url}/jscripts/thread.js?ver=1827"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/thread.js?ver=1838"></script>
for all template changes to check, if they are done on your board, visit: https://www.mybb.de/doku/sonstiges/geaen...1838/1837/
If the loading spinner does not disappear after posting a quick reply successfully, this is the solution.