Edit

Permalink
Dear Community,

how is it possible in the current Concrete5 version 8.0.1 to add an individual theme header and theme footer on the welcome page or account page (after login) and edit the menu on the right side (account-page)? Furthermore, I can not override the /single-pages/desktop.php file successfully via the /application/app.php file. Does anyone know a solution? At this point, did the procedure fundamentally change as opposed to the C5 5.7 version? I am looking forward to your feedback.

Many thanks and greetings Frank

 
hutman replied on at Permalink Reply
hutman
The current concrete5 version is 8.1.0

In order to get your site's header/footer on those pages add this to your /application/config/app.php

'theme_paths' => array(
    '/account' => 'theme_handle',
    '/account/*' => 'theme_handle',
    '/login' => array(
        'theme_handle',
        VIEW_CORE_THEME_TEMPLATE_BACKGROUND_IMAGE,
    )
),


As for the desktop.php it needs to be in /application/single_pages/desktop.php not single-pages
quarterloop replied on at Permalink Reply
Thank you so much