Hello mojweb,
there is a quick workaround for fields in administration data view.
You just add some custom CSS to your Joomla template for administration.
Here is a description for the Joomla standard template for the administration 'Atum'.
1. Create the following file:
Code:
media/templates/administrator/atum/css/user.css
This file is safe from all Joomla updates.
2. Add CSS like this:
Code:
.com_visforms #adminForm[action*="fid=3"] th:nth-child(6),
.com_visforms #adminForm[action*="fid=3"] td:nth-child(6),
.com_visforms #adminForm[action*="fid=3"] th:nth-child(10),
.com_visforms #adminForm[action*="fid=3"] td:nth-child(10),
.com_visforms #adminForm[action*="fid=3"] th:nth-child(15),
.com_visforms #adminForm[action*="fid=3"] td:nth-child(15) {
display: none;
}
Now for the data view in the administration
- for the form with ID=3
- the fields with position 6, 10 and 15 in the table (each column counts)
no longer displayed.
You'll need to adjust the form ID and position values to suit your situation.
In my example form, the fields on positions 6, 10 and 15 are of type 'pagebreak'.
Data view without custom CSS:
vi-solutions.de/forum-uploads/admin-dataview-all-fields.png
Data View with Custom CSS:
vi-solutions.de/forum-uploads/admin-data...me-hidden-fields.png
Create the file user.css with Joomla Administration means:
In Joomla you can create such a CSS file via System >> Administrator Templates.
First you have to go to "New file" and then in the tree view of directories click on the directory where the file should be created.
Kind regards, Ingmar