mandat, on 17 November 2008, 00:59, said:
1,2,3 and next.4.5 6... products in the same time in a box and sliders on the left and the right sides of the box
Thanks
Posted 29 October 2009, 02:18
mandat, on 17 November 2008, 00:59, said:
Posted 12 November 2009, 20:52
Posted 12 November 2009, 21:10
pjhvan@gmail.com, on 12 November 2009, 20:52, said:
Posted 13 November 2009, 03:16
Olof Larsson, on 21 September 2008, 08:39, said:
Posted 20 November 2009, 22:08
Posted 25 November 2009, 02:27
PennyP, on 20 November 2009, 22:08, said:
Posted 17 January 2010, 22:04
Edited by korben83, 17 January 2010, 22:13.
Posted 18 January 2010, 12:55
Posted 25 January 2010, 21:58
Edited by bus7er, 25 January 2010, 22:06.
Posted 25 January 2010, 22:23
Posted 12 February 2010, 21:24
Edited by raclif, 12 February 2010, 21:25.
Posted 16 February 2010, 15:01
Posted 02 June 2010, 02:24
Posted 05 July 2010, 06:03
sylwekz, on 29 October 2009, 02:18, said:
Posted 16 July 2010, 07:40
Olof Larsson, on 21 September 2008, 08:39, said:
Posted 17 July 2010, 06:34
Posted 17 July 2010, 06:35
Posted 06 August 2010, 15:06
there is no attribute "ALT"and this is the HTML code that was taken from my site and listed as an example
<div class="PCSChild" alt="<a href="http://mydomain....
Posted 10 August 2010, 10:01
/*Pick news*/
$new_products_query = tep_db_query("select distinct p.products_id, p.products_image, p.products_tax_class_id, pd.products_name, if(s.status, s.specials_new_products_price, p.products_price) as products_price from " . TABLE_PRODUCTS . " p left join " . TABLE_SPECIALS . " s on p.products_id = s.products_id, " . TABLE_PRODUCTS_DESCRIPTION . " pd where p.products_status = '1' and p.products_id = pd.products_id and pd.language_id = '" . (int)$languages_id . "' order by p.products_date_added desc limit " . PCS_MAX_DISPLAY_NEW_PRODUCTS);
while ($new_product = tep_db_fetch_array($new_products_query)) {
echo '<div class="PCSChild"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_product['products_id']) . '"><img src="images/pcs_images/'.$new_product['products_name'].'.png" alt="'.$new_product['products_name'].'"></a><br><a class="PCSChild" href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $new_product['products_id']) . '"><b></b>'.$new_product['products_name'].'<br>'.$currencies->display_price($new_product['products_price'], tep_get_tax_rate($new_product['products_tax_class_id'])).'</a>' .'<br></div>';
}
?>
<?php
$special_products_query = tep_db_query("select p.products_id, pd.products_name, p.products_price, p.products_tax_class_id, p.products_image, s.specials_new_products_price from " . TABLE_PRODUCTS . " p, " . TABLE_PRODUCTS_DESCRIPTION . " pd, " . TABLE_SPECIALS . " s where p.products_status = '1' and p.products_id = s.products_id and pd.products_id = s.products_id and pd.language_id = '" . (int)$languages_id . "' and s.status = '1' order by rand() limit " . PCS_MAX_DISPLAY_SPECIALS);
while ($special_product = tep_db_fetch_array($special_products_query)) {
echo '<div class="PCSChild"><a href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $special_product['products_id']) . '"><img src="images/pcs_images/'.$special_product['products_name'].'.png" alt="'.$special_product['products_name'].'"></a><br><a class="PCSChild" href="' . tep_href_link(FILENAME_PRODUCT_INFO, 'products_id=' . $special_product['products_id']) . '"><b></b>'.$special_product['products_name'].'<br><s>'.$currencies->display_price($special_product['products_price'], tep_get_tax_rate($special_product['products_tax_class_id'])).'</s> <span class="productSpecialPrice">'.$currencies->display_price($special_product['specials_new_products_price'], tep_get_tax_rate($special_product['products_tax_class_id'])).'</span></a>' .'</div>';
}
?>
Posted 22 September 2010, 22:38