Add Site Navigation Bar to Account Page

Permalink
I attempted to add my site navigation bar to my account page. However, I received an error. What would the best way to do this be? Also, how would this be done so if I upgrade c5 it won't overwrite this change?

<?php
defined('C5_EXECUTE') or die("Access Denied.");
$this->inc('../../application/themes/quarterly_helps/elements/header.php');  ?>


Error: include(/home2/bturner/public_html/quarterlyhelps/concrete/themes/concrete/../../application/themes/quarterly_helps/elements/header.php): failed to open stream: No such file or directory

 
MrKDilkington replied on at Permalink Reply
MrKDilkington
Hi Freckles,

When you reference your "account page", what are you referring to?

Are you using a custom theme and where is it located?

The include path you are using looks incorrect.

If in your theme folder you have an "elements" folder containing "header.php", I believe this should be your include path.
$this->inc('elements/header.php');