Custom My Account Page

Permalink
Hi Folks

I want to style up the "My Account" Page in version 8, I have found the right php files for avatar, edit profile and messages under concrete/single_pages/account but these just seem to be includes for a larger page...

Can anyone tell me where to find the parent page so to speak so I can get to all elements on the page for styling them up to suit my theme?

I have looked through load of files but cant see anything and cant find anything on google.

AuroraTim
 
AuroraTim replied on at Permalink Reply
AuroraTim
Ok so I found the file where it is written under concrete/themes/concrete/account/account.php. I can edit this file and see the changes reflected but when I make a new directory under application/themes/concrete/account/account.php but it doesnt pick up the changes....

Any ideas appreciated

cheers
AuroraTim replied on at Permalink Reply
AuroraTim
sorted it...
dbuerer replied on at Permalink Reply
how did you resolve it?
BRP007 replied on at Permalink Reply
Create the account.php file in your desired template directory
Then edit application/config/app.php to override the core_theme.

Example:
return array(
    'theme_paths'         => array(
        '/account'          => ' desiredthemename',
        '/account/*'        => ' desiredthemename',
    ),
);


Documentation talks about it here:
https://documentation.concrete5.org/developers/pages-themes/designin...