is there a mod or infusion that allows admin to rewrite the url for custom pages?
instead of the page displaying /view.php?page_id=1 it would display something like, home.php or aboutus.php
Merged on Nov 28 2012 at 14:18:12:
possibly there is also something that allows admin to create page title, mete descriptions, keywords etc for custom pages and or the rest of the site?
Merged on Nov 28 2012 at 23:36:50:
i have actually created for each page on my site separate files and locales, then just copied the the code from the existing php fusion pages, to get the desired effect. my page looks something like this;
require_once "maincore.php";
require_once THEMES."templates/header.php";
include LOCALE.LOCALESET."chimney.php";
add_to_title($locale['global_200'].$locale['101']);
{
opentable($locale['101']);
echo "<table border='0' bordercolor='#000000' CELLSPACING='1' CELLPADDING='1' align='center' width='850'>
<tr>
<td style='vertical-align:top;'><text align='left'><b>".$locale['201']."</b></text></td>
<td width='400' style='vertical-align:top;'><IMG SRC='http://www.chimneyworldcyprus.com/images/chimney1.jpg' ALIGN='center' ALT='Cyprus Chimney Cake'></td>
</tr>
</table>";
closetable();
}
require_once THEMES."templates/footer.php";
?>
Surely there is something that can be applied to the custom pages to allow an admin to create a custom url for each page and add meta descriptions etc.
Edited by gilesytheking on 28-11-2012 23:36
|