What template do you have set for the "Product Template:" on Preference > Mobile?
That would be the template that you would need to change. I took a look at the default mobile template mb_MobileDefaultProduct.sst and it is pretty complex with lots of IF, Else, Else IF code. So it may not be an easy fix but here is what I would try
find the lines
- Code: Select all
[-- ELSE_IF PRODUCT.QuantityPricing --]
[-- PRODUCT.QuantityPricing --]
and replace them with
[code[-- ELSE_IF PRODUCT.QuantityPricing --]
</td></tr><tr><td[-- PRODUCT.QuantityPricing --]][/code]
That should close any open <tr and <td tags above the quantity pricing table and then open a new table row so the table will start in the first cell of the row. If Quantity pricing isn't enabled then the code won't be executed so the flow should remain as it was before.
I didn't actually try that but give it a try and see if that fixes the problem.