Skip Navigation

[Resolved] Hide There is no Content Template assigned for Gravity views

This thread is resolved. Here is a description of the problem and solution.

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 support ticket is created 7 years, 1 month ago. There's a good chance that you are reading advice that it now obsolete.

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)

This topic contains 2 replies, has 2 voices.

Last updated by marcB-6 7 years, 1 month ago.

Assisted by: Christian Cox.

Author
Posts
#584867
Screenshot_25.png

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

#584972

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.

#585066

Its working

Thanks