Advertisement
VEKIA

homenewproducts.tpl - prestashop modification

Oct 26th, 2013
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.17 KB | None | 0 0
  1. {*
  2. * 2007-2013 PrestaShop
  3. *
  4. * NOTICE OF LICENSE
  5. *
  6. * This source file is subject to the Academic Free License (AFL 3.0)
  7. * that is bundled with this package in the file LICENSE.txt.
  8. * It is also available through the world-wide-web at this URL:
  9. * http://opensource.org/licenses/afl-3.0.php
  10. * If you did not receive a copy of the license and are unable to
  11. * obtain it through the world-wide-web, please send an email
  12. * to license@prestashop.com so we can send you a copy immediately.
  13. *
  14. * DISCLAIMER
  15. *
  16. * Do not edit or add to this file if you wish to upgrade PrestaShop to newer
  17. * versions in the future. If you wish to customize PrestaShop for your
  18. * needs please refer to http://www.prestashop.com for more information.
  19. *
  20. * @author PrestaShop SA <contact@prestashop.com>
  21. * @copyright 2007-2013 PrestaShop SA
  22. * @license http://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
  23. * International Registered Trademark & Property of PrestaShop SA
  24. *}
  25. {literal}
  26. <script>
  27. $(document).ready(function(){
  28. $(".dropshadowclass").mouseover(function (){
  29. $(this).find(".poverlay").css('visibility','visible');
  30. });
  31. $(".dropshadowclass").mouseout(function (){
  32. $(this).find(".poverlay").css('visibility','hidden');
  33. });
  34. });
  35. </script>
  36. {/literal}
  37. <!-- MODULE Home new Products -->
  38. <div id="featured-products_block_center" class="block products_block clearfix">
  39. <h4 class="title_block">{l s='New products' mod='homenewproducts'}</h4>
  40. {if isset($products) AND $products}
  41. <div class="block_content">
  42. {assign var='liHeight' value=250}
  43. {assign var='nbItemsPerLine' value=4}
  44. {assign var='nbLi' value=$products|@count}
  45. {math equation="nbLi/nbItemsPerLine" nbLi=$nbLi nbItemsPerLine=$nbItemsPerLine assign=nbLines}
  46. {math equation="nbLines*liHeight" nbLines=$nbLines|ceil liHeight=$liHeight assign=ulHeight}
  47. <ul style="height:{$ulHeight}px;">
  48. {foreach from=$products item=product name=homeNewProducts}
  49. {math equation="(total%perLine)" total=$smarty.foreach.homeNewProducts.total perLine=$nbItemsPerLine assign=totModulo}
  50. {if $totModulo == 0}{assign var='totModulo' value=$nbItemsPerLine}{/if}
  51. <li class="dropshadowclass ajax_block_product {if $smarty.foreach.products.first}first_item{elseif $smarty.foreach.products.last}last_item{/if} {if $smarty.foreach.products.index % 2}alternate_item{else}item{/if} clearfix">
  52. <div class="center_block">
  53. <a href="{$product.link|escape:'htmlall':'UTF-8'}" class="product_img_link" title="{$product.name|escape:'htmlall':'UTF-8'}">
  54. <img src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'home_default')|escape:'html'}" alt="{$product.legend|escape:'htmlall':'UTF-8'}" {if isset($homeSize)} width="{$homeSize.width}" height="{$homeSize.height}"{/if} />
  55. {if isset($product.new) && $product.new == 1}<span class="new">{l s='New'}</span>{/if}
  56. {if isset($product.on_sale) && $product.on_sale && isset($product.show_price) && $product.show_price && !$PS_CATALOG_MODE}<span class="on_sale">{l s='On sale!'}</span>
  57. {elseif isset($product.reduction) && $product.reduction && isset($product.show_price) && $product.show_price && !$PS_CATALOG_MODE}<span class="discount">{l s='Reduced price!'}</span>{/if}
  58. {if (!$PS_CATALOG_MODE AND ((isset($product.show_price) && $product.show_price) || (isset($product.available_for_order) && $product.available_for_order)))}
  59. {if isset($product.online_only) && $product.online_only}<span class="online_only">{l s='Online only'}</span>{/if}
  60. {/if}
  61. </a>
  62. <h3>{if isset($product.pack_quantity) && $product.pack_quantity}{$product.pack_quantity|intval|cat:' x '}{/if}<a href="{$product.link|escape:'htmlall':'UTF-8'}" title="{$product.name|escape:'htmlall':'UTF-8'}">{$product.name|truncate:35:'...'|escape:'htmlall':'UTF-8'}</a></h3>
  63. <p class="product_desc"><a href="{$product.link|escape:'htmlall':'UTF-8'}" title="{$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'}" >{$product.description_short|strip_tags:'UTF-8'|truncate:360:'...'}</a></p>
  64. <div class="content_price">
  65. {if isset($product.show_price) && $product.show_price && !isset($restricted_country_mode)}<span class="price" style="display: inline;">{if !$priceDisplay}{convertPrice price=$product.price}{else}{convertPrice price=$product.price_tax_exc}{/if}</span><br />{/if}
  66. {if isset($product.available_for_order) && $product.available_for_order && !isset($restricted_country_mode)}<span class="availability">{if ($product.allow_oosp || $product.quantity > 0)}{l s='Available'}{elseif (isset($product.quantity_all_versions) && $product.quantity_all_versions > 0)}{l s='Product available with different options'}{else}{l s='Out of stock'}{/if}</span>{/if}
  67. </div>
  68.  
  69. </div>
  70. <div class="poverlay">
  71. <a href="#" class="product_image" style="z-index:0;">
  72. <img style="display:none;" src="{$link->getImageLink($product.link_rewrite, $product.id_image, 'home_default')|escape:'html'}" alt="{$product.legend|escape:'htmlall':'UTF-8'}" {if isset($homeSize)} width="{$homeSize.width}" height="{$homeSize.height}"{/if} />
  73. </a>
  74. <div class="right_block">
  75. {if isset($comparator_max_item) && $comparator_max_item}
  76. <p class="compare">
  77. <input type="checkbox" class="comparator" id="comparator_item_{$product.id_product}" value="comparator_item_{$product.id_product}" {if isset($compareProducts) && in_array($product.id_product, $compareProducts)}checked="checked"{/if} autocomplete="off"/>
  78. <label for="comparator_item_{$product.id_product}">{l s='Select to compare'}</label>
  79. </p>
  80. {/if}
  81. {if ($product.id_product_attribute == 0 || (isset($add_prod_display) && ($add_prod_display == 1))) && $product.available_for_order && !isset($restricted_country_mode) && $product.minimal_quantity <= 1 && $product.customizable != 2 && !$PS_CATALOG_MODE}
  82. {if ($product.allow_oosp || $product.quantity > 0)}
  83. {if isset($static_token)}
  84. <a class="cartbutton button ajax_add_to_cart_button exclusive" rel="ajax_id_product_{$product.id_product|intval}" href="{$link->getPageLink('cart',false, NULL, "add=1&amp;id_product={$product.id_product|intval}&amp;token={$static_token}", false)|escape:'html'}" title="{l s='Add to cart'}">{l s='Add to cart'}</a>
  85. {else}
  86. <a class="cartbutton button ajax_add_to_cart_button exclusive" rel="ajax_id_product_{$product.id_product|intval}" href="{$link->getPageLink('cart',false, NULL, "add=1&amp;id_product={$product.id_product|intval}", false)|escape:'html'}" title="{l s='Add to cart'}">{l s='Add to cart'}</a>
  87. {/if}
  88. {else}
  89. <span class="cartbutton exclusive">{l s='Add to cart'}</span>
  90. {/if}
  91. {/if}
  92. <div class="viewbutton">
  93. <a class="button" href="{$product.link|escape:'htmlall':'UTF-8'}" title="{l s='View'}">{l s='View'}</a>
  94. </div>
  95. </div>
  96. </div>
  97. </li>
  98. {/foreach}
  99. </ul>
  100. </div>
  101. {else}
  102. <p>{l s='No new products' mod='homenewproducts'}</p>
  103. {/if}
  104. </div>
  105. <!-- /MODULE Home new Products -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement