Я позволю себе слегка поправить уважаемого
h4mpy:
h4mpy писал(а):
для этого можно нужно сверстать каталог как надо и после перенести верстку в xsl
В данном случае - именно так, иначе вы больше запутаетесь чем сделаете.
Для того чтобы убрать блок фильтров вам надо аккуратно удалить вот этот код
<div class="shop_block">
<div>
<!-- Если есть доступные производители -->
<xsl:if test="count(producerslist/producer) > 0">Производитель:  <select name="producer_id"> <option value="0">…</option> <xsl:apply-templates select="producerslist/producer"/></select> </xsl:if>
<!-- Если есть доступные продавцы -->
<xsl:if test="count(sallers/saller) > 0">Продавец:  <select name="saller_id"> <option value="0">…</option> <xsl:apply-templates select="sallers/saller"/></select> </xsl:if>Цена от:  <input name="price_from" size="5" type="text"> <xsl:if test="/shop/price_from != 0"> <xsl:attribute name="value"> <xsl:value-of disable-output-escaping="yes" select="/shop/price_from"/></xsl:attribute></xsl:if></input>  до:  <input name="price_to" size="5" type="text"> <xsl:if test="/shop/price_to != 0"> <xsl:attribute name="value"> <xsl:value-of disable-output-escaping="yes" select="/shop/price_to"/></xsl:attribute></xsl:if></input>  <span style="white-space: nowrap">Товаров на странице:</span>  <select name="on_page"> <option value="0">…</option> <xsl:call-template name="for_on_page"> <xsl:with-param name="i" select="10"/> <xsl:with-param name="n" select="50"/></xsl:call-template></select> </div>
<xsl:if test="count(properties_for_group/property[property_show_kind != 0 and (shop_list_of_properties_type = 0 or shop_list_of_properties_type = 2 or shop_list_of_properties_type = 7)]) > 0">
<p>
<b>Фильтр по дополнительным свойствам товара:</b>
</p>
<table cellpadding="10px" cellspacing="0">
<tr valign="top">
<xsl:apply-templates select="properties_for_group/property[property_show_kind != 0 and (shop_list_of_properties_type = 0 or shop_list_of_properties_type = 2 or shop_list_of_properties_type = 7)]"/>
</tr>
</table>
</xsl:if>
<div class="nofloat" style="margin-left: 40%">
<div class="gray_button">
<div>
<input name="apply_filter" value="Применить" type="submit"/>
</div>
</div>
</div>
</div>
из XSL-шаблона "МагазинКаталогТоваров".