Skip Navigation

[Résolu] Hide There is no Content Template assigned for Gravity views

Ce fil est résolu. Voici une description du problème et la solution proposée.

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 Il y a 7 années et 1 mois. 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.

Aucun de nos assistants n'est disponible aujourd'hui sur le forum Jeu d'outils. Veuillez créer un ticket, et nous nous le traiterons dès notre prochaine connexion. Merci de votre compréhension.

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)

Ce sujet contient 2 réponses, a 2 voix.

Dernière mise à jour par marcB-6 Il y a 7 années et 1 mois.

Assisté par: Christian Cox.

Auteur
Publications
#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