#6169

indevaweb
Participant

I found the solution caused by out of stock products, producttabs is not written to handle products that are out of stock:

Update
app/code/local/Sns/Producttabs/Block/List.php

replace:
if( $status == ‘1’ ){
$items[$product_obj->id] = $product_obj;
}
by:
//if( $status == ‘1’ ){
$items[$product_obj->id] = $product_obj;
//}