I actually solved my own problem.
Got people going nuts with buying items, making the screen scroll over? This quick fix should solve the problem.
Before doing any code modification, go into your Templates Manager and create a new template. I used the name "ishop_invpostbit_itemreturn".
In that template, you just need to put this:
Go into the \plugins\inventory.php file.
Find:
Code:
foreach ($myitem as $the_item) {
Before that put:
Find:
Code:
eval('$post[invrow] .= "' . fetch_template('ishop_invpostbit_item') . '";');
And after it put:
Code:
$i++;
if ($i == 8) {
eval('$post[invrow] .= "' . fetch_template('ishop_invpostbit_itemreturn') . '";');
$i = 0;
}
In this snippet of code, the number that $i is set to is the number of items the inventory will display before skipping to the next line. I chose 8 items. You can pick any number you want.
Upload the inventory.php file to the plugins directory and you're set!
You can see this in action at our forum:
http://the-reactor.org/forums
This should work until the developer can come up with a cleaner fix.