Я
Яра
Прохожие
- Автор темы
- #1
Помогите разобраться с кодом
что бы было, как здесь Для просмотра ссылки Войди или Зарегистрируйся рейтинг под картинкой, цена, корзина, сравнить справа. Я его вставляю, а у меня он вылазит возле картинки, а описание справа, внизу остается старый блок с корзиной, ценой. Подскажите, что не так или код поправите и куда его правильно вставить чтобы старый не появлялся, получается так:
HTML:
<div class="prdbrief_thumbnail">
<table cellpadding="0" cellspacing="0"><tr><td align="center" valign="middle" style="width: {$smarty.const.CONF_PRDPICT_THUMBNAIL_SIZE}px; height: {$smarty.const.CONF_PRDPICT_THUMBNAIL_SIZE}px;">
<!-- Thumbnail -->
<a {$target} href='{$_product_url}'>{if $product_info.thumbnail}
<img src="{$smarty.const.URL_PRODUCTS_PICTURES}/{$product_info.thumbnail|escape:'url'}" alt="{$product_info.name|escape:'html'}" title="{$product_info.name|escape:'html'}" />
{elseif $product_info.picture}
<img src="{$smarty.const.URL_PRODUCTS_PICTURES}/{$product_info.picture|escape:'url'}" alt="{$product_info.name|escape:'html'}" title="{$product_info.name|escape:'html'}" />
{/if}</a>
</td>
<td>
{if $smarty.const.CONF_VOTING_FOR_PRODUCTS eq 'True'}
{if $PAGE_VIEW ne 'mobile' && $product_info.customer_votes > 0} {* rating *}
<div class="sm-current-rating1"><div class="sm-current-rating1-back"> </div><div class="sm-current-rating1-front" style="width: {$product_info.customers_rating*13}px;"> </div></div>
{/if}
{/if}
{if $currencies_count ne 0 && $product_info.Price > 0}
<div class="prdbrief_price">
<span class="totalPrice">{$product_info.PriceWithUnit}</span>
</div>
{/if}
{if $product_info.ordering_available && $product_info.Price>0 && ( $smarty.const.CONF_SHOW_ADD2CART eq 1 ) && ( $smarty.const.CONF_CHECKSTOCK==0 || $product_info.in_stock > 0 ) }
<div class="prdbrief_add2cart">
<input type="image" src="{$button_add2cart_small}" alt="{'str_add_to_cart_string'|translate}" title="{"str_add_to_cart_string"|translate}"
{if $smarty.const.CONF_SHOPPING_CART_VIEW ne $smarty.const.SHCART_VIEW_PAGE && !$widget} class="add2cart_handler" rel="{if $widget}widget{/if}" {/if} />
</div>
{elseif $smarty.const.CONF_SHOW_ADD2CART eq 1 && $smarty.const.CONF_CHECKSTOCK && !$product_info.in_stock && $product_info.ordering_available}
<div class="prd_out_of_stock">{lbl_prd_out_of_stock}</div>
{/if}
</td>
</tr></table>
</div>