Features On Category List / Product Page

Any ideas how I can change the layout of features so they will be one underneath the other and also not show the label/title for either all or chosen features in the product and category list - unlike below:

This is how I want it to look:

design/themes/responsive/templates/views/products/components/product_features_short_list.tpl

try to replace

{feature_value feature=$feature}{if !$smarty.foreach.features_list.last}, {/if}

with

{feature_value feature=$feature}{if !$smarty.foreach.features_list.last}
{/if}

Then clear cache

Thank you for this!

Do you know if there is a way to enable certain features to be on one line - e.g. like the logo's and to only have the feature name for selected ones?

You can find feature ID in admin panel and use something like

{feature_value feature=$feature}{if !$smarty.foreach.features_list.last}{if $feature.feature_id|in_array:[123, 234]}, {else}
{/if}{/if}

where 123, 234 - required feature IDs

Thank you for this, I've tried it as per your post and it doesn't show up as expected - theres no change.

Also, as the features are added using the brand feature, these now show up in my brand area.

Did you specify correct feature IDs and cleared cache?

From looking into this, the code is working, certainly to set the features on different lines on the category list page but not on the product page of some products - this only seems to be when the other feature is another brand type:

You can see this on our site by going to https://store.dsavltd.co.uk/?store_access_key=dsavltd

Then where it's working:

https://store.dsavltd.co.uk/musicians-corner/guitar-accessories/cabinets/hartke-hydrive-hd115-bass-cabinet/

And where it isn't:

https://store.dsavltd.co.uk/visual/displays/large-format/samsung-qb55r-55-led-4k-digital-signage-flat-panel-clone/

https://store.dsavltd.co.uk/visual/displays/large-format/samsung-qb55r-55-led-4k-digital-signage-flat-panel-clone/


From looking into this, the code is working, certainly to set the features on different lines on the category list page but not on the product page of some products - this only seems to be when the other feature is another brand type:

You can see this on our site by going to https://store.dsavltd.co.uk/?store_access_key=dsavltd

Then where it's working:

https://store.dsavltd.co.uk/musicians-corner/guitar-accessories/cabinets/hartke-hydrive-hd115-bass-cabinet/

And where it isn't:

https://store.dsavltd.co.uk/visual/displays/large-format/samsung-qb55r-55-led-4k-digital-signage-flat-panel-clone/

https://store.dsavltd.co.uk/visual/displays/large-format/samsung-dc32e-32-digital-signage-display/

Probably because that feature is not made to be shown under some category.. Products you presented are assigned to different categories..

From looking into this, the code is working, certainly to set the features on different lines on the category list page but not on the product page of some products - this only seems to be when the other feature is another brand type:

You can see this on our site by going to https://store.dsavltd.co.uk/?store_access_key=dsavltd

Then where it's working:

https://store.dsavltd.co.uk/musicians-corner/guitar-accessories/cabinets/hartke-hydrive-hd115-bass-cabinet/

And where it isn't:

https://store.dsavltd.co.uk/visual/displays/large-format/samsung-qb55r-55-led-4k-digital-signage-flat-panel-clone/

https://store.dsavltd.co.uk/visual/displays/large-format/samsung-qb55r-55-led-4k-digital-signage-flat-panel-clone/

Also not that modifying list to one under another will also affect product list without option in product category pages..

I see only Store closed page

https://store.dsavltd.co.uk/?store_access_key=dsavltd

Probably because that feature is not made to be shown under some category.. Products you presented are assigned to different categories..

It's not the particular feature that is the problem e.g. not assigned to the category - more the demonstration of how the features are displaying

It is required to examine the code you added.