Am I missing something?
I am trying to sort my products by Model number but it's not showing on the product listing page and I can't see how to turn it on.
I'm also trying to change it to show 3 in a row not the current 4.
Product Listing
- ReneH4
- Contributor
- Posts: 145
- Joined: Mon Oct 26, 2020 12:00 pm
- Phoenix Version:
- Has thanked: 13 times
- Been thanked: 17 times
Re: Product Listing
Admin > Configuration > Product Listing > Products per Row
Products Per Row
How many products should display per Row per viewport? Default: XS 2, SM 3, MD and above 4
Products Per Row
How many products should display per Row per viewport? Default: XS 2, SM 3, MD and above 4
-
LeeFoster
- Contributor
- Posts: 263
- Joined: Sun Feb 28, 2021 9:41 pm
- Phoenix Version: v1.0.8.20
- Has thanked: 1 time
- Been thanked: 5 times
Re: Product Listing
Yeah I found it in the end. Need to work out how to add white background to make all the images appear the same height now.
See here for an example - http://witchwindgames.atwebpages.com/in ... ?cPath=6_5
-
Omar_one
- Senior Contributor
- Posts: 677
- Joined: Fri Oct 25, 2019 5:06 pm
- Phoenix Version: v1.0.8.16
- Has thanked: 100 times
- Been thanked: 56 times
Re: Product Listing
You can use KissIT Image Thumbnailer
app.php/addons/free_addon/kissit_image_thumbnailer/
Or you can add some stylish to user.css ( this will not add white background to the images , but it make the images appear the same heigh)
Code: Select all
.card-img-top {
object-fit: cover;
}
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
.card-img-top {
height: 19vw;
}
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
.card-img-top {
height: 16vw;
}
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
.card-img-top {
height: 11vw;
}
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 992px) {
.card-img-top {
height: 19vw;
}
}-
heatherbell
- Senior Contributor
- Posts: 2540
- Joined: Mon Oct 07, 2019 4:39 am
- Phoenix Version:
- Has thanked: 35 times
- Been thanked: 243 times
Re: Product Listing
Personally, we use image software to create and optimise our images and start with the same size square background/canvas when creating the images to ensure they are all same size.
-
LeeFoster
- Contributor
- Posts: 263
- Joined: Sun Feb 28, 2021 9:41 pm
- Phoenix Version: v1.0.8.20
- Has thanked: 1 time
- Been thanked: 5 times
Re: Product Listing
As do I but this website is for someone else.heatherbell wrote: ↑Fri Oct 29, 2021 1:02 pmPersonally, we use image software to create and optimise our images and start with the same size square background/canvas when creating the images to ensure they are all same size.