rylersbud Posted March 1, 2010 Share Posted March 1, 2010 Why do some categories show scenes and others do not and how do I configure it I cannot find it Link to comment Share on other sites More sharing options...
rocky Posted March 2, 2010 Share Posted March 2, 2010 Go to Catalog > Image mapping to assign scenes to categories. On the product listings, Prestashop checks whether a scene exists for that category. If it does, it displays the scene, otherwise it will display the category image assigned on the Catalog > Category > Edit page. Link to comment Share on other sites More sharing options...
cleatus Posted May 2, 2011 Share Posted May 2, 2011 don't know if you're still watching this thread but how would you go about not using scenes at all i.e. no product category image either? Link to comment Share on other sites More sharing options...
rocky Posted May 2, 2011 Share Posted May 2, 2011 Just go to Catalog > Image mapping and delete all the scenes, then go to Catalog and edit each category to delete it's image. Link to comment Share on other sites More sharing options...
cleatus Posted May 2, 2011 Share Posted May 2, 2011 i should have mentioned i want to keep the image for categories so it shows the subcategories and their images on category page but doesn't show the scene with image on the product page. it doesn't appear that that option is available in bk office, or is it? i can modify tpl files if necessary, but i wasn't sure where to start with this one. thanks in advance Link to comment Share on other sites More sharing options...
rocky Posted May 2, 2011 Share Posted May 2, 2011 You will need to {* comment out *} lines 44-54 of category.tpl (in PrestaShop v1.4.1): {if $scenes} <!-- Scenes --> {include file="$tpl_dir./scenes.tpl" scenes=$scenes} {else} <!-- Category image --> {if $category->id_image} <img src="{$link->getCatImageLink($category->link_rewrite, $category->id_image, 'category')}" alt="{$category->name|escape:'htmlall':'UTF-8'}" title="{$category->name|escape:'htmlall':'UTF-8'}" id="categoryImage" width="{$categorySize.width}" height="{$categorySize.height}" /> {/if} {/if} Link to comment Share on other sites More sharing options...
cleatus Posted May 2, 2011 Share Posted May 2, 2011 mine started on line 43. works great! thanks a lot, rocky 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