#6274

stephen
Keymaster

Hi,

You need use attribute product_category to assign for your category. Example Men category has ID is 42 then please add code:

<product_category>42</product_category>

==>

<block type="slider/list" name="slider_tab1">
	<action method="setConfig">
		<name>
			<title>Men</title>
			<product_category>42</product_category>
			<product_order_by>best_sales</product_order_by>
			<pretext></pretext>
		</name>
	</action>
	<action method="addToParentGroup"><group>custom_tabs</group></action>
</block>
<block type="slider/list" name="slider_tab2">
	<action method="setConfig">
		<name>
			<title>Women</title>
			<product_order_by>best_sales</product_order_by>
			<pretext></pretext>
		</name>
	</action>
	<action method="addToParentGroup"><group>custom_tabs</group></action>
</block>

Thanks!