Goodmorning, i would hide some fields in "manage company offer" form i saw the php file in components/com_jbusinessdirectory/views/managecompanyoffer/tmpl/default.php but i can't find what i would "hide" i need the user dont see following fields: - Publish start date - Publish end date - Publish start time - Publish end time - Show remaining time is it possible? how? thank u
Use below to remove options:
\administrator\components\com_jbusinessdirectory\views\offer\tmpl\edit.php
/Robert
custom.css:
Example:
label[for="startDate"] {
display: none;
}
But this will remove all start date labels
I always recommend the regularlabs rereplacer plugin. With it you can replace
<label for="startDate">Publish
with
<label for="startDate" style="display:none;">Publish
and so on...