Quote Originally Posted by Nick1973 View Post
Just a quick one, on the product listing...

modules/bootstrap/product_listing.php does not format correctly when setting the number of columns required.

this
PHP Code:
 if ($product_listing_layout_style === 'columns' || $product_listing_layout_style === 'fluid') {            $lc_text implode('<br>'$product_contents);            $style '';            if ($product_listing_layout_style === 'columns') {                $style ' style="width:' $col_width '%;"'
needs changing to this

PHP Code:
if ($product_listing_layout_style === 'columns' || $product_listing_layout_style === 'fluid') {            $lc_text implode('<br>'$product_contents);            $style '';            if ($product_listing_layout_style === 'columns') {                /* $style = ' style="width:' . $col_width . '%;"'*/
Or you need to take out the line
PHP Code:
$style ' style="width:' $col_width '%;"' 
altogether
I'll review that, but why would you hard-code the number of columns instead of letting the bootstrap responsiveness do its thing?