Welcome the Technical Support section. Help us in assisting you by providing us with a concise and descriptive elaboration of your issues. Be specific and if possible, provide us with a step-by-step instruction in replicating your problem.
I don't particularly like the cover photo feature (profiles, groups, etc.) and wish to disable it completely. Is this possible to do? If so, can you please explain how?
Hi David,
In that case you need to have simple customization at code level.
Here is some instruction as
Please copy and paste below files at
root/templates/current_template/html/com_community
then do the following otherwise at the time of upgrade the jomsocial package it will be undone.
For the frontpage at root/components/com_community/templates/default/frontpage.guests.php
remove the code
<div class="row-fluid hero-area">
...
</div>
for the profile cover root/components/com_community/templates/default/modules/profile/userinfo.php
remove the code
<div class="js-focus-cover">
...
</div>
for group cover root/components/com_community/templates/default/groups.viewgroup.php
remove the code
<div class="js-focus-cover">
...
</div>
for event cover root/components/com_community/templates/default/events.viewevent.php
<div class="js-focus-cover">
...
</div>
Important note: It is strongly recommended to have a whole site backup first before customizing.
Thanks