Hi Alejandro quintero,
If you use the theme 3, please open the theme3.php file in "your_site/modules/mod_sj_vm_categoryshowcase/tmpl", finding:
<?php if (($options->show_image_product ==1)&&($item['image'] !='')) {?>
<div class="images">
<?php if($options->link_image_product==1) {?>
<a style="color:<?php echo $options->title_color;?>" href="<?php echo $item['link'];?>" target="<?php echo $options->target;?>">
<img src="<?php echo Ytools::resize($item['image'], $small_image_config);?>" alt="image"/><br/>
</a>
<?php } else {?>
<img src="<?php echo Ytools::resize($item['image'], $small_image_config);?>" alt="image"/>
<?php }?>
</div>
<?php } ?>
<div class="sub_content" style="color:<?php echo $options->title_color;?>;">
<?php if ($options->show_title ==1) {?>
<div class="title" style="color:<?php echo $options->title_color;?>; font-weight: bold">
<?php if($options->link_title==1) {?>
<a style="color:<?php echo $options->title_color;?>; font-weight: bold" href="<?php echo ($options->link_title)?$item['link']:"#";?>" target="<?php echo $options->target;?>"> <?php echo YTools::truncate($item['title'], $options->limit_title);?> </a> <br/>
<?php } else { echo YTools::truncate($item['title'], $options->limit_title);}?>
</div>
<?php }?>
<?php if($options->show_price == 1){?>
<span class="item_price" style="color: <?php echo $options->price_color;?>; font-weight: bold">
<?php
if($item['price']['discountAmount'] > 0){
$price_before_discount = $item['price']['salesPrice'] + $item['price']['discountAmount'] ;
echo "<s>". $vm_currency_display->priceDisplay($price_before_discount)."</s> ";
}?>
<span style="color:<?php echo $options->price_color_salesPrice;?>;">
<?php
echo $vm_currency_display->priceDisplay($item['price']['salesPrice']);
?>
</span>
</span>
<?php }?>
<?php if ($options->show_desc == 1) {?>
<div class="brief_description" style="color:<?php echo $options->desc_color;?>">
<?php echo YTools::truncate($item['desc'], $options->limit_desc);?>
</div>
<?php }?>
<?php if ($options->show_read_more == 1) {?>
<div class="read_more"><a href="<?php echo $item['link'];?>" target="<?php echo $options->target;?>" style="color:<?php echo $options->desc_color;?>"><?php echo $options->read_more_text;?></a></div>
<?php }?>
</div> <!-- END sub_content -->
change to:
<div class="sub_content" style="color:<?php echo $options->title_color;?>;">
<?php if ($options->show_title ==1) {?>
<div class="title" style="color:<?php echo $options->title_color;?>; font-weight: bold">
<?php if($options->link_title==1) {?>
<a style="color:<?php echo $options->title_color;?>; font-weight: bold" href="<?php echo ($options->link_title)?$item['link']:"#";?>" target="<?php echo $options->target;?>"> <?php echo YTools::truncate($item['title'], $options->limit_title);?> </a> <br/>
<?php } else { echo YTools::truncate($item['title'], $options->limit_title);}?>
</div>
<?php }?>
<?php if($options->show_price == 1){?>
<span class="item_price" style="color: <?php echo $options->price_color;?>; font-weight: bold">
<?php
if($item['price']['discountAmount'] > 0){
$price_before_discount = $item['price']['salesPrice'] + $item['price']['discountAmount'] ;
echo "<s>". $vm_currency_display->priceDisplay($price_before_discount)."</s> ";
}?>
<span style="color:<?php echo $options->price_color_salesPrice;?>;">
<?php
echo $vm_currency_display->priceDisplay($item['price']['salesPrice']);
?>
</span>
</span>
<?php }?>
<?php if (($options->show_image_product ==1)&&($item['image'] !='')) {?>
<div class="images">
<?php if($options->link_image_product==1) {?>
<a style="color:<?php echo $options->title_color;?>" href="<?php echo $item['link'];?>" target="<?php echo $options->target;?>">
<img src="<?php echo Ytools::resize($item['image'], $small_image_config);?>" alt="image"/><br/>
</a>
<?php } else {?>
<img src="<?php echo Ytools::resize($item['image'], $small_image_config);?>" alt="image"/>
<?php }?>
</div>
<?php } ?>
<?php if ($options->show_desc == 1) {?>
<div class="brief_description" style="color:<?php echo $options->desc_color;?>">
<?php echo YTools::truncate($item['desc'], $options->limit_desc);?>
</div>
<?php }?>
<?php if ($options->show_read_more == 1) {?>
<div class="read_more"><a href="<?php echo $item['link'];?>" target="<?php echo $options->target;?>" style="color:<?php echo $options->desc_color;?>"><?php echo $options->read_more_text;?></a></div>
<?php }?>
</div> <!-- END sub_content -->
Thanks