Re: How to edit title and meta?
Hi there.
You can edit the title tag in root/page_home.php file, Scroll to the bottom and look for
$html_title ='Find IT jobs on ' . SITE_NAME;
To edit the meta keywords and description open root/index.php file, and find this line of code (line 26)
$meta_description = '';
$meta_keywords = '';
You can also change title and meta description for individual pages as well.
Static Pages -> in root/index.php, look for switch($page), goto the required page and set $html_title = 'About Us / ' . SITE_NAME;
All other pages -> in root/page_yourpage.php(eg: page_company.php), scroll to the bottom. and edit $html_title, $meta_description.
Hope it helped
regards
vinay