By Andrew McDonald on Friday, 27 June 2014
Replies 11
Likes 0
Views 1.1K
Votes 0
At the moment when I view my own album page the top of the page just shows my name eg: "darius's albums".

Is there a "simple" way to make my Profile Cover (es-cover-container) display instead of the just the album owners name ?

I've tried copying the code over and replacing chunks of code but I just keep breaking the page

Any tips would be awesome!
Hello Andrew,

Sorry but I don't really understand you here. The gif that you sent is animating too fast and I really can't view the difference. Can you please highlight the area that you are trying to change?
·
Friday, 27 June 2014 22:31
·
0 Likes
·
0 Votes
·
0 Comments
·
album-default.jpg - this shows what the default album page when viewed by the owner.

album-with-cover.jpg - this shows the same default album page, but with the owners cover container (class="es-cover-container") included that is displayed on the profile page.

Just trying to see if there is a relatively simple way of including the container in the ablum view as by default the page just shows a title "owners album" which from a UX perspective is not very intuative. Having the cover still visible will really help viewers understand they are still on the person profile.

Hope that makes sense!
cheers
Andrew
·
Saturday, 28 June 2014 10:55
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Andrew,

I am really sorry for the delay of this reply as it is a weekend for us here. Ah, okay I get the bigger picture now It could be possible but if you are viewing your own albums, I don't really think it makes sense to display your own profile stuffs at the top because if you are viewing another person's photo album, you get the 'mini headers' and this would just confuse the owner more don't you think so?
·
Sunday, 29 June 2014 18:01
·
0 Likes
·
0 Votes
·
0 Comments
·
If viewing another persons photo album I still want to see their "mini header"... but when I view my own photo album the "mini header" is swapped out for a small title saying "Andrew's Albums" which from a UX/UI perspective is quite weak.

I would like to swap the "Andrews Album" title for the profile cover container. I'm sure this is possible, but I keep getting errors.
·
Wednesday, 02 July 2014 08:35
·
0 Likes
·
0 Votes
·
0 Comments
·
Hello Andrew,

Yes, it is possible and you just need to edit the file /components/com_easysocial/themes/wireframe/albums/header.user.php and locate the codes below,


<?php if( $user->id != $this->my->id ){ ?>
<div class="mb-15">
<?php echo $this->loadTemplate( 'site/profile/mini.header' , array( 'user' => $user ) ); ?>
</div>
<?php } else { ?>
<div class="mt-15 mb-0"><h3 class="h3"><?php echo JText::sprintf( 'COM_EASYSOCIAL_ALBUMS_OF', $user->getName() ); ?></h3></div>
<?php } ?>


Replace it with,


<div class="mb-15">
<?php echo $this->loadTemplate( 'site/profile/mini.header' , array( 'user' => $user ) ); ?>
</div>
·
Wednesday, 02 July 2014 12:15
·
0 Likes
·
0 Votes
·
0 Comments
·
Hey Mark, this doesn't seem to work. Nothing displays in the header area now?
·
Friday, 04 July 2014 08:45
·
0 Likes
·
0 Votes
·
0 Comments
·
Ah, it looks like there's another file that you need to update too. Download the attached file and upload it into /components/com_easysocial/themes/wireframe/profile/ and overwrite the mini.header.php file.
·
Friday, 04 July 2014 18:12
·
0 Likes
·
0 Votes
·
0 Comments
·
Thanks! I'll give it a go.

Btw, can I just say how impressed I am with the support from EasySocial... I recently swapped from using JomSocial and I couldn't be happier.
·
Saturday, 05 July 2014 07:50
·
0 Likes
·
0 Votes
·
0 Comments
·
You are most welcome Andrew and Thank you for the kind compliments By the way, if it's not too much to ask for, would it be possible for you to post a review for EasySocial on JED at http://extensions.joomla.org/extensions/clients-a-communities/communities/25616 ?

Thank you in advance!
·
Saturday, 05 July 2014 14:48
·
0 Likes
·
0 Votes
·
0 Comments
·
Done! Added. 5 Stars all the way.
·
Monday, 07 July 2014 06:17
·
0 Likes
·
0 Votes
·
0 Comments
·
Thank you Andrew! Appreciate it very much
·
Monday, 07 July 2014 12:11
·
0 Likes
·
0 Votes
·
0 Comments
·
View Full Post