DaveGears86
Member
I hope somebody can help, I'm confused!
Long story short - I've been asked to look at a clients website (I have access to the server etc.), when I get in there I discover that the website is a template attached to CMS.
Anyway, I wanted to edit the websites navigation menu (simple, or so I thought), I find that there is a "header.php" link at the top of each page for the website, which I understand is holding the menu inside, so I open up header.php which looks like this:
I understand that the menu is "<microweber module="content/menu" name="main_menu" ul_class="nav pull-right" />"
But my question is - Does this mean that the menu is only editable in the CMS control panel?
(I'm waiting for a reply from the site owner for some insight on how to use his CMS as it is very messy but I wanted to be sure that the menu is indeed hidden away in the CMS)
Thanks,
p.s. - I hate template/CMS clients, for some reason it always makes me feel like my freedom to edit the website is harnessed, I want to code like a real man!
Long story short - I've been asked to look at a clients website (I have access to the server etc.), when I get in there I discover that the website is a template attached to CMS.
Anyway, I wanted to edit the websites navigation menu (simple, or so I thought), I find that there is a "header.php" link at the top of each page for the website, which I understand is holding the menu inside, so I open up header.php which looks like this:
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>{content_meta_title}</title>
<meta NAME="Description" CONTENT="{content_meta_description}">
<meta NAME="Keywords" CONTENT="{content_meta_keywords}">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<link href="<? print TEMPLATE_URL ?>css/bootstrap.css" rel="stylesheet">
<link href="<? print TEMPLATE_URL ?>css/bootstrap-responsive.css" rel="stylesheet">
<link href="http://fonts.googleapis.com/css?family=Open+Sans:400italic,600italic,400,600" rel="stylesheet">
<link href="<? print TEMPLATE_URL ?>css/font-awesome.css" rel="stylesheet">
<link href="<? print TEMPLATE_URL ?>css/reboot-landing.css" rel="stylesheet">
<link href="<? print TEMPLATE_URL ?>css/reboot-landing-responsive.css" rel="stylesheet">
<link href="<? print TEMPLATE_URL ?>css/themes/green/theme.css" rel="stylesheet">
<link href="<? print TEMPLATE_URL ?>css/pages/homepage.css" rel="stylesheet">
<link href="<? print TEMPLATE_URL ?>css/plans.css" rel="stylesheet">
<link href="<? print TEMPLATE_URL ?>js/lightbox/themes/default/jquery.lightbox.css" rel="stylesheet">
<!-- Le HTML5 shim, for IE6-8 support of HTML5 elements -->
<!--[if lt IE 9]>
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="<? print site_url('api/js'); ?>"></script>
<script type="text/javascript">
function send_mail(){
contact = $("#the_contact_form").serialize();
$.post("<? print TEMPLATE_URL ?>mailsender.php", contact, function(){
$("#the_contact_form").html("<br><br><h2>Your request has been sent</h2><br><br><br>");
});
}
function sub_mail(){
contact = $("#the_sub_form").serialize();
$.post("<? print TEMPLATE_URL ?>mailsender.php", contact, function(){
$("#the_sub_form").html("<br><br><h2>Your request has been sent</h2><br><br><br>");
});
}
</script>
</head>
<body>
<div class="navbar navbar-fixed-top">
<div class="navbar-inner">
<div class="container"> <a class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse"> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </a> <a class="brand1" href="<? print site_url(); ?>">Eleven plus exam</a>
<div class="nav-collapse">
<div class="pull-right">
<microweber module="content/menu" name="main_menu" ul_class="nav pull-right" />
</div>
</div>
<!--/.nav-collapse -->
</div>
<!-- /container -->
</div>
<!-- /navbar-inner -->
</div>
<!-- /navbar -->
I understand that the menu is "<microweber module="content/menu" name="main_menu" ul_class="nav pull-right" />"
But my question is - Does this mean that the menu is only editable in the CMS control panel?
(I'm waiting for a reply from the site owner for some insight on how to use his CMS as it is very messy but I wanted to be sure that the menu is indeed hidden away in the CMS)
Thanks,
p.s. - I hate template/CMS clients, for some reason it always makes me feel like my freedom to edit the website is harnessed, I want to code like a real man!