Hi.
I've followed all the instructions in this post.
I've added 3 pages; FAQ, About Us and Articles. I seem to have made a mistake with the path in the URL. When I check the pages I've added they look likeinstead ofCode:http://mydomain.com/index.php?main_page=FILENAME_ARTICLESMy question is: Does any one know specifically where in the steps the URL is added? It seems to me like it's the entry in more_information.php but I fail to spot the diff between:Code:http://mydomain.com/index.php?main_page=articles.html
if (DEFINE_ARTICLES_STATUS <= 1) {
$more_information[] = '<a href="' . zen_href_link(FILENAME_ARTICLES) . '">' . BOX_INFORMATION_ARTICLES . '</a>';
}
and the supplied example
Add the line:
if (DEFINE_PAGE_1_STATUS <= 1) {
$more_information[] = '<a href="' . zen_href_link(FILENAME_PAGE_1) . '">' .BOX_INFORMATION_PAGE_1 . '</a>';
}


Reply With Quote
