Home › Toolset Professional Support › [Resolved] Hide There is no Content Template assigned for Gravity views
Problem: I would like to hide the message "There is no Content Template assigned" that is shown to admin users on pages created by Gravity Views.
Solution: Add the following custom CSS to your theme:
.gravityview-template-default .panel.not-assigned { display: none !important; }
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 |
---|---|---|---|---|---|---|
8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | 8:00 – 12:00 | - | - |
13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | 13:00 – 17:00 | - | - |
Supporter timezone: America/New_York (GMT-04:00)
Tagged: Content Templates, Views plugin
Related documentation:
This topic contains 2 replies, has 2 voices.
Last updated by marcB-6 7 years, 1 month ago.
Assisted by: Christian Cox.
Tell us what you are trying to do : Display gravity form entries using Gravityviews plugin
I have gravity form view crated when I open that view I see There is no Content Template assigned message box.
gravity views would be accessible to administrator users.
Please check attached screenshot
Thanks
If you're not planning to use a Content Template on this page, but you want to hide the message, you can add some CSS to your theme to turn off the panel:
.gravityview-template-default .panel.not-assigned { display: none !important; }
If you wanted to expand this to hide all the not-assigned panels, you could remove the .gravityview-template-default class.
Its working
Thanks