MyBB Community Forums

Full Version: Recent topics on index
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How do I move my recent topics from bottom to right side of the forum?

Plugin: http://mods.mybb.com/view/recent-topics-on-index-page
Bump.
Bump.
Do you already have any right panel?
What is your board url?
Alternatively you can have a look at my plugin here. It shows on top at the forum index.

http://mods.mybb.com/view/recent-posts-forum-index
(2012-12-07, 08:04 PM)borbole Wrote: [ -> ]Alternatively you can have a look at my plugin here. It shows on top at the forum index.

http://mods.mybb.com/view/recent-posts-forum-index

That's the same url as I said in OP... All I want is that plugin to be placed in right side of my site.
Then you need to change the HTML of your page and add a column to put it it in. Then, given the layout of that plugin, you would probably have to redo the templates so it looks correct. Try looking at the portal templates for styling of the side box.

<html>
<head>
<title>{$mybb->settings['bbname']}</title>
{$headerinclude}
<script type="text/javascript">
<!--
	lang.no_new_posts = "{$lang->no_new_posts}";
	lang.click_mark_read = "{$lang->click_mark_read}";
// -->
</script>
<style type="text/css">
.navigation{display:none;}
</style>
</head>
<body>
{$header}
<table><tr><td width="80%">
{$forums}
</td><td width="20%" valign="top"> some thing</td></tr></table>
{$boardstats}

<dl class="forum_legend smalltext">
	<dt><img src="{$theme['imgdir']}/on.gif" alt="{$lang->new_posts}" title="{$lang->new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->new_posts}</dd>

	<dt><img src="{$theme['imgdir']}/off.gif" alt="{$lang->no_new_posts}" title="{$lang->no_new_posts}" style="vertical-align: middle; padding-bottom: 4px;" /></dt>
	<dd>{$lang->no_new_posts}</dd>
</dl>
<br style="clear: both" />
{$footer}
</body>
</html>
(2012-12-07, 10:24 PM)BccMac Wrote: [ -> ]
(2012-12-07, 08:04 PM)borbole Wrote: [ -> ]Alternatively you can have a look at my plugin here. It shows on top at the forum index.

http://mods.mybb.com/view/recent-posts-forum-index

That's the same url as I said in OP... All I want is that plugin to be placed in right side of my site.

Sorry about that. Anyway, personally I don''t have the time to edit the plugin but have a look at my other plugin. It shows the recent threads on the sidebar. You can also choose the position as to where you want it to appear, on the left or right side.

http://mods.mybb.com/view/recent-threads-forum-sidebar
recent topic on top alsway better. i hope you fix soon, Borbole