MyBB Community Forums

Full Version: MyBBShops Small Template Bug
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Howdy. Smile

First off, I'd just like to say I sincerely appreciate those who take their time to help the less knowledgeable. It's sad when people forget that the support is ran by volunteers!

I'm currently using the MyBBShops plugin, found here:
http://mods.mybb.com/view/mybbshops-free-lite-version

In the product listing, there's a small bug in the layout. I would like the prices and purchase links to be moved over to the right a little, so they're correctly in their columns.

[Image: 11buf6f.png]



Thanks guys! Big Grin
You just need to centre align those columns.

Go to and edit: AdminCP > Templates & Style > Templates > Global Templates > shops_products_row

Replace contents with:

<tr>
<td class="{$background}" width="200px">{$img}</td>
<td class="{$background}"><strong>{$p['title']}</strong><br/><span class="smalltext">{$p['description']}</span></td>
<td class="{$background}" align="center">{$p['price']}</td>
<td class="{$background}" align="center"><a href="shops.php?action=purchase&id={$p['id']}">{$lang->purchase}</td>
</tr>
W00T.

Worked perfectly.

Thank you very much sir. Big Grin
No worries, your welcome.

All the best Smile