MyBB Hacks

Full Version: Article Gallery
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
(06-30-2013 06:36 PM)ZiNgA BuRgA Wrote: [ -> ]There is a "Hide Forum" setting when you edit the forum...

Oops. I missed that.
Would you by any chance know how to setup a .htaccess where if forumdisplay.php && fid=1 are seen together in the URL, it'll redirect to news.php && fid=1 ?

I basically want to remove all access to forumdisplay.php if in the news.php.

Thanks,
Hydra
Im having issues, the categories dont seem to save when chosen and they dont display on the showthread next to author so sorting is broken.

Does anyone have any idea's why or how to fix it.
(12-31-2014 02:22 AM)Ukshep Wrote: [ -> ]Im having issues, the categories dont seem to save when chosen and they dont display on the showthread next to author so sorting is broken.

Does anyone have any idea's why or how to fix it.

Fixed it, i messed up and removed the value variable
Dunno if you are still providing support on this but i just installed on my website and looks great. I was wondering if there would be any chance that i could display an avatar and so many characters preview of the post in the horizontal list?

I have a funny feeling this would be done by making changes to the thread list global tmeplate but im not familiar with codnig so dont know how to start
it seems in 1.8 u can't remove comments. how can that be fixed?
nvm fixed it

need to replace the javascript

in the showthread template:

Code:
<script type="text/javascript">
<!--
	var quickdelete_confirm = "{$lang->quickdelete_confirm}";
// -->
</script>
<script type="text/javascript" src="jscripts/thread.js?ver=1400"></script>


with:

Code:
<script type="text/javascript">
<!--
	var quickdelete_confirm = "{$lang->quickdelete_confirm}";
	var quickrestore_confirm = "{$lang->quickrestore_confirm}";
	var allowEditReason = "{$mybb->settings['alloweditreason']}";
	lang.save_changes = "{$lang->save_changes}";
	lang.cancel_edit = "{$lang->cancel_edit}";
	lang.quick_edit_update_error = "{$lang->quick_edit_update_error}";
	lang.quick_reply_post_error = "{$lang->quick_reply_post_error}";
	lang.quick_delete_error = "{$lang->quick_delete_error}";
	lang.quick_delete_success = "{$lang->quick_delete_success}";
	lang.quick_delete_thread_success = "{$lang->quick_delete_thread_success}";
	lang.quick_restore_error = "{$lang->quick_restore_error}";
	lang.quick_restore_success = "{$lang->quick_restore_success}";
	lang.editreason = "{$lang->postbit_editreason}";
// -->
</script>
<!-- jeditable (jquery) -->
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/report.js?ver=1804"></script>
<script src="{$mybb->asset_url}/jscripts/jeditable/jeditable.min.js"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/thread.js?ver=1804"></script>


how do you get it to show no threads if there is none in the category?

i use plugin rateu post
latest gallery on index and this show up
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
Reference URL's