ciao a tutti, ho un problemino...
ho fatto una personalizzazione al file "productsnapshot.tpl.php" per avere le ultime novità è i random products in home page. Ho inserito anche la possibilità di richiamare la descrizione breve, solo che alcune descrizioni sono troppo lunghe ed escono dai box, vorrei impostare un leggi tutto automatico collegato alla relativa scheda prodotto.
Il sito in questione è:
www.puntospy.comVi posto il codice del file productsnapshot.tpl.php customizzato:
<?php if( !defined( '_VALID_MOS' ) && !defined( '_JEXEC' ) ) die( 'Direct Access to '.basename(__FILE__).' is not allowed.' ); ?>
<div id="contenitore_latest">
<div id="img_latest">
<a title="<?php echo $product_name ?>" href="<?php echo $product_link ?>">
<?php
// Print the product image or the "no image available" image
echo ps_product::image_tag( $product_thumb_image, "alt=\"".$product_name."\"");
?>
[/url]</div>
<div id="container_dx_latest">
<a title="<?php echo $product_name ?>" href="<?php echo $product_link ?>">
<?php if( $show_product_name ) : ?>
<div id="container_titoli_latest">
<span class="testo_titoli_latest"><?php echo $product_name ?></span>
</div>
<?php endif; ?>
[/url]
<div id="container_prezzi_latest">
<span class="prezzo_latest" align="right">
<?php
if( !empty($price) ) {
echo $price;
}
?>
</span>
</div>
<?php
if( !empty($product_s_desc) ) {
echo '
<div id="descrizione_breve_container">'.$product_s_desc.'</div>';
}
?>
<?php
if( !empty($addtocart_link) ) {
?>
<form action="<?php echo $mm_action_url ?>index.php" method="post" name="addtocart" id="addtocart">
<input type="hidden" name="option" value="com_virtuemart" />
<input type="hidden" name="page" value="shop.cart" />
<input type="hidden" name="Itemid" value="<?php echo ps_session::getShopItemid(); ?>" />
<input type="hidden" name="func" value="cartAdd" />
<input type="hidden" name="prod_id" value="<?php echo $product_id; ?>" />
<input type="hidden" name="product_id" value="<?php echo $product_id ?>" />
<input type="hidden" name="quantity" value="1" />
<input type="hidden" name="set_price[]" value="" />
<input type="hidden" name="adjust_price[]" value="" />
<input type="hidden" name="master_product[]" value="" />
<input type="submit" class="addtocart_button_module" value="<?php echo $VM_LANG->_('PHPSHOP_CART_ADD_TO') ?>" title="<?php echo $VM_LANG->_('PHPSHOP_CART_ADD_TO') ?>" />
</form>
<?php
}
?>
</div>
</div>
Grazie mille