Product Price Filters

Is there a way to hide the product price filters until a customer signs in? Or at least have the prices at $0.0 until they sign in?

design\themes\YOUR_THEME\templates\blocks\product_filters\original.tpl



Replace:



{foreach from=$items item="filter" name="filters"}




with:



{foreach from=$items item="filter" name="filters"}
{if $filter.slider && !$auth.user_id}
{continue}
{/if}




Then clear the cache and check the result