Hello,
I have just created a new product new template.
The approach is very basic and you can if you want to include some features inside like flash discount, qty, stock ...
How it works, Inside directory template_html, create new files like template_boostrap_simple.php and insert this code below.
You can copy this files in other template directory if you want to have a new design.
I take the orginal design, but if you want to change the css parameters, It's better to create a new css.
what do you think ?
<?php
/**
*
* @copyright 2008 - https://www.clicshopping.org
* @Brand : ClicShopping(Tm) at Inpi all right Reserved
* @Licence GPL 2 & MIT
* @licence MIT - Portion of osCommerce 2.4
* @Info : https://www.clicshopping.org/forum/trademark/
*
*/
use ClicShopping\OM\CLICSHOPPING;
?>
<div class="col-md-<?php echo $bootstrap_column; ?> col-md-<?php echo $bootstrap_column; ?>">
<div class="card-deck-wrapper" itemprop="itemListElement" itemscope="" itemtype="https://schema.org/Product">
<div class="card-deck">
<div class="card card-footer">
<div>
<div class="col-md-6 float-md-left">
<div class="ModulesFrontPageBoostrapColumn6Image"> <?php echo $products_image; ?></div>
</div>
<div class="col-md-6 float-md-right">
<div class="ModulesFrontPageBoostrapColumn6Title"><h3><a href="<?php echo $products_name_url; ?> "><?php echo $products_name; ?></a></h3></div>
<div class="separator"></div>
<div class="separator"></div>
</div>
</div>
<div class="separator"></div>
<div class="hr"></div>
<div>
<ul class="list-inline">
<div class="ModulesFrontPageBoostrapColumn6TextPrice" itemprop="offers" itemscope itemtype="https://schema.org/Offer"><?php echo CLICSHOPPING::getDef('text_price') . ' ' . $product_price; ?></div>
</ul>
</div>
</div>
</div>
<div class="separator"></div>
</div>
</div>
the result :