
Originally Posted by
Woodymon
I installed v.2.7. I found the page renders fine all the way down to the tabs. However the tab pane now extends to the right margin, and my left column is entirely pushed down to below the tabs and below where "also purchased products" might be displayed (if I had enabled).
If it matters I do not have any "additional images" or any "product details" (qty/weight/model/manuf) to display and display of "also purchased products" is disabled.
And for now I choose to display the "Add to Cart" button below the tabs (default positioning)
Possibly a missing closing div tag or something to do with new table html in the new 2.7 code?
Found the bug! Had an If statement closing tag closed too early. Here is the fix:
(just move the closing bracket below the echo statments.)
FIND (Around line 458):
Code:
}
echo '</td></tr></table>';
echo '<br /></div>';
$a++;
REPLACE WITH:
Code:
echo '</td></tr></table>';
echo '<br /></div>';
$a++;
}
Also, I found a typo I made on line:
Line: 672
$bCustomerAlsoPurchased should be $bCustomer
sAlsoPurchased
I've attached the fixed tpl file by itself here. I've also uploaded a 2.7a release in the contribs section.
Thanks for lookin out Woody :)
Bookmarks