Panther.software Posted March 11, 2015 Share Posted March 11, 2015 Hello, i am wondering how to modify Layered navigation block (currently in version 2.0.7) to show only new products (instead of everything) in category display pages. Let me know or give some directions. Link to comment Share on other sites More sharing options...
musicmaster Posted March 11, 2015 Share Posted March 11, 2015 I am not sure how to do this. Personally I find the 1.x version of layered navigation easier to modify than 2.x. Link to comment Share on other sites More sharing options...
Panther.software Posted March 11, 2015 Author Share Posted March 11, 2015 Any other way to display products flagged as NEW within category? Link to comment Share on other sites More sharing options...
musicmaster Posted March 11, 2015 Share Posted March 11, 2015 Just check for $product.new==1 Link to comment Share on other sites More sharing options...
Panther.software Posted March 11, 2015 Author Share Posted March 11, 2015 Dont know excatly how to do it but anyway thanks for help! Link to comment Share on other sites More sharing options...
musicmaster Posted March 11, 2015 Share Posted March 11, 2015 At the risk of making some programming errors. If you want only to display the new products from a category you could do something like this at the beginning of your product-list.php file: {$newproducts = array()} {foreach from=$products item=product} {if $product.new == 1} {$newproducts[] = $product} {/if} {/foreach} {assign var='products' value=$newproducts*} Link to comment Share on other sites More sharing options...
Panther.software Posted March 11, 2015 Author Share Posted March 11, 2015 I want to display it under category view (category.tpl?), here is a attachment: Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now