Members Listing
Permalink
Hello,
I'm looking at using the members listing default page index.php/members.
Question - how can we move the navigation to the bottom so it doesn't show with each entry?
Thanks
I'm looking at using the members listing default page index.php/members.
Question - how can we move the navigation to the bottom so it doesn't show with each entry?
Thanks
You're talking about the User's Profile? I don't see any navigation on the members page.
Yes, that is correct.
The Profile side bar is located at:
/concrete/elements/profile/sidebar.php
It is rendered in: /concrete/single_pages/profile/view.php
Line 3:
<?php Loader::element('profile/sidebar', array('profile'=> $profile)); ?>
Inside a DIV with ID: ccm-profile-sidebar
So, either use CSS to move this div down or copy those files to your installations corresponding directories and customize them.
/concrete/elements/profile/sidebar.php
It is rendered in: /concrete/single_pages/profile/view.php
Line 3:
<?php Loader::element('profile/sidebar', array('profile'=> $profile)); ?>
Inside a DIV with ID: ccm-profile-sidebar
So, either use CSS to move this div down or copy those files to your installations corresponding directories and customize them.