MyBB Community Forums

Full Version: Do this remove this
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
[Image: 648remove.png]

[Image: 410link.png]
1. Template: forumdisplay_threadlist

Remove this: {$orderarrow['lastpost']}

2. That author name is generated through PHP in a variable called "{$thread['profilelink']}", I guess. You can try using this jQ script to remove the author links (template: forumdisplay_thread)

<script type="text/javascript">
jQuery.noConflict();
jQuery(document).ready(function() {
jQuery('.author a').removeAttr('href');
});
</script>