By Sebastian on Sunday, 04 June 2017
Posted in General
Replies 5
Likes 0
Views 214
Votes 0
Hi,

I wonder which file I have to edit to hide the Custom notifications field as well as the category field in the composer See attachment.

There seems to be no way to hide those fields from admin panel so I want to hide it via .php but IU am struggling to locate the file / path.

Regards,
Sebastian
For the notification go to easyblog settings -> ACL -> select desired user group -> create -> last option on this screen (Allow to use custom ACL notifications when composing blog post)

That should hide the notification settings on the composer.
·
Sunday, 04 June 2017 21:39
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you.

And what about the the category field?

Regards,
Sebastian
·
Sunday, 04 June 2017 21:47
·
0 Likes
·
0 Votes
·
0 Comments
·
Since I am not a support staff member but a casual user like you, I wanted to help you with a fast answer for the problem I have a solution for. An official support member will come later and give you an answer for sure.

Only solution I could offer is by CSS:


#eb .eb-composer-panel-content .eb-composer-fieldset:first-child {display:none};


But I am not sure about what kind of influence this might have to other pages...
·
Sunday, 04 June 2017 21:53
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Sabih,

I am sorry - I thought you would belong to the support team. Otherwise my answer would have been a bit more friendly.

Sebastian
·
Sunday, 04 June 2017 22:04
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for sharing Sabih

You can try this custom css :

#eb .eb-composer-panel-content .eb-composer-fieldset[data-name="category"] {
display: none !important;
}


Since you would like to hide something from the composer, i would suggest you put this custom css code into this following template override file location :

Frontend : JoomlaFolder/templates/YourCurrentTemplate/html/com_easyblog/styles/custom.css
Backend : JoomlaFolder/administrator/templates/YourCurrentTemplate/html/com_easyblog/styles/custom.css
·
Monday, 05 June 2017 11:43
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post