Found a temporary solution.
In this file: /includes/modules/pages/product_reviews/header_php.php
I made the following change:
Find line #43-44 and replace with the following.
Code:
// $products_name = $review->fields['products_name'] . '<br /><span class="smallText">[' . $review->fields['products_model'] . ']</span>';
// } else {
Basically I am commenting out the code that Zen Lightbox is mangling which makes the odd/malformed HTML go away. I'm sure the same solution will fix the issue with the Colorbox beta so I'm gonna post this there too..

Originally Posted by
DivaVocals
More information.. Did a little hunting with the Admin Toolbox and I think I know where the part of the store is being hosed is coming from..
/home2/myhost/public_html/myclient/includes/modules/pages/product_reviews/header_php.php |
Line #42 : $products_name = $review->fields['products_name'] . '<br /><span class="smallText">[' . $review->fields['products_model'] . ']</span>'; |
|
/home2/myhost/public_html/myclient/includes/modules/pages/product_reviews_info/header_php.php |
Line #100 : $products_model = '<br /><span class="smallText">[' . $review_info->fields['products_model'] . ']</span>'; |
|
/home2/myhost/public_html/myclient/includes/modules/pages/product_reviews_write/header_php.php |
Line #119 : $products_model = '<br /><span class="smallText">[' . $product_info->fields['products_model'] . ']</span>'; |
These were the only files I could related to reviews which has code similar to the code that is getting mangled by the lightbox (specifically the reference to the model number). The write reviews page is probably fine since the I do not see the problem manifest itself there, but you never know.. Dunno if this helps narrow things down, but hoping it helps point things in the right direction..
Bookmarks