By Alexandre Cayer on Friday, 20 March 2015
Posted in General Issues
Replies 11
Likes 0
Views 849
Votes 0
Hi Guys,

There is already a function to remove the cover for profile but not for group. If i go into com_easysocial/themes/wireframe/groups/cover.php, what do I have un remove to undo the cover

Thanks
Hi Alex,

I believe currently we do not have setting to not displaying group cover. You can go to this file: /components/com_easysocial/themes/wireframe/groups/item.header.php remove code at line: 20.

<?php echo $this->includeTemplate( 'site/groups/cover', array('cover' => $group->getCoverData()) ); ?>


Then, you need to put this css override code:

body div#fd .page-item{
margin-top:100px
}


Please take note that this is a customization and it will get override when updating EasySocial. Please backup this file before updating EasySocial as you can apply back this modification.

Hope this helps.
·
Friday, 20 March 2015 19:17
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Mohd,

Thanks! Php worked great however there is still css error
·
Friday, 27 March 2015 12:07
·
0 Likes
·
0 Votes
·
0 Comments
·
Sorry Mohd, the fault was my mistake, the custom.css wasn't loaded in the template. all good
·
Friday, 27 March 2015 12:32
·
0 Likes
·
0 Votes
·
0 Comments
·
Mohd,

However the profile and group without cover are very different...how to set it as of profile ?
·
Friday, 27 March 2015 12:43
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Alex,

Here I give you a css override code. Can you please remove the css code which I gave you earlier, and replace it with this code:

body div#fd.es .es-profile-header-body{
margin: 10px 10px 0 100px;
}
body div#fd.es .es-avatar.es-avatar-lg{
height: 80px;
width: 80px;
}


Hope this helps.
·
Friday, 27 March 2015 15:55
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Mohd,

This is actually better than profile box (it is centered !) I would suggest that in next update you set the same css to the profile one as per the screens... profile is not alligned correctly!

Good JOb :P
·
Saturday, 28 March 2015 01:51
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks for the heads up on this Alexandre! Appreciate it very much.
·
Saturday, 28 March 2015 01:54
·
0 Likes
·
0 Votes
·
0 Comments
·
No prob

Found a css glitch on iphone :P corresponding ajusment for ipad/iphone ? See screen
·
Saturday, 28 March 2015 03:19
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Alexandre,

Can you remove all the override css that we provided earlier,
body div#fd .page-item{
margin-top:100px
}
body div#fd.es .es-profile-header-body{
margin: 10px 10px 0 100px;
}
body div#fd.es .es-avatar.es-avatar-lg{
height: 80px;
width: 80px;
}

and then open components/com_easysocial/themes/wireframe/groups/item.header.php

line: 19.
<div class="es-profile-header-heading with-cover">
update to
<div class="es-profile-header-heading without-cover">
·
Monday, 30 March 2015 10:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Chang.

Marvelous, just don't forget to correct the margin-bottom for the profile header item so it is center

Alex
·
Tuesday, 31 March 2015 11:49
·
0 Likes
·
0 Votes
·
0 Comments
·
Hi Alex,

Thanks for updating us back. Have a nice day.
·
Tuesday, 31 March 2015 12:28
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post