Skip Navigation

[Resolved] View is not showing in grid colums

This is the technical support forum for Toolset - a suite of plugins for developing WordPress sites without writing PHP.

Everyone can read this forum, but only Toolset clients can post in it. Toolset support works 6 days per week, 19 hours per day.

Sun Mon Tue Wed Thu Fri Sat
- 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 10:00 – 13:00 -
- 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 14:00 – 18:00 -

Supporter timezone: Asia/Kolkata (GMT+05:30)

This topic contains 7 replies, has 2 voices.

Last updated by adriS 1 year, 9 months ago.

Assisted by: Minesh.

Author
Posts
#2557873

Tell us what you are trying to do? Just to display a view in a grid with 3 columns, but it is displaying single colums

Is there any documentation that you are following? Can not find something related

Is there a similar example that we can see?

What is the link to your site? hidden link

#2557983

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

Hello. Thank you for contacting the Toolset support.

That is really strange. I will have to see what is going wrong with your setup.

Most probably I can see that you are using the Beaver Builder so the issue could be from there.

Can you please share admin access details and let me investigate whats going wrong with your setup.

*** Please make a FULL BACKUP of your database and website.***
I would also eventually need to request temporary access (WP-Admin) to your site. Preferably to a test site where the problem has been replicated if possible in order to be of better help and check if some configurations might need to be changed.

I have set the next reply to private which means only you and I have access to it.

#2558117

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

Can you please check now: hidden link

I've added the following CSS code to your view's custom CSS section:

#wpv-view-layout-1006 .tb-grid {
grid-template-columns: 1fr 1fr 1fr;
}

More info:
- https://toolset.com/course-lesson/adding-custom-css-to-templates-archives-and-views/#steps-for-adding-css-to-a-view

#2558121

Thank you Minesh

It is show correct on the bigger screens now but the phone should only show one?

#2558125

Minesh
Supporter

Languages: English (English )

Timezone: Asia/Kolkata (GMT+05:30)

Can you please check now: hidden link

To display different columns per device you will have to add media query as given under:

@media only screen and (min-width: 992px)   {
    
#wpv-view-layout-1006 .tb-grid {
grid-template-columns: 1fr 1fr 1fr !important;
}
    
}

@media(max-width: 767px) {
#wpv-view-layout-1006 .tb-grid {
grid-template-columns: 1fr;
}
    
}

Feel free to adjust the above CSS to to your view's custom CSS section as required.

#2558163

My issue is resolved now. Thank you!

#2560153

Sorry, I'm not able to replicate it. Somewhere something is still missing, I'm still not able to do wat you did

#2560157

My issue is resolved now. Thank you!