insert a new customer page to the information
Posted: Thu Sep 13, 2012 12:02 pm
modify the files catalog/controller/common/foot.php
add the following code to get the content
modify the files catalog/language/english/common/foot.php (you also need to modify the other languages and change content 'new information' in different language )
add one variable txt
modify your template files
catalog/view/theme/yourtemplate/template/common/foot.php
you can get the your informatioin id from your backend to get that.
but this link can't use the seo derictly.
I want to change the url as the <?php echo $information['href']; ?> to using the SEO derictly?
is anyone can do it ?
add the following code to get the content
Code: Select all
$this->data['text_newinformation'] = $this->language->get('text_newinformation');
add one variable txt
Code: Select all
$_['text_newinformation'] = 'new information';
catalog/view/theme/yourtemplate/template/common/foot.php
Code: Select all
<li><a href="information/information&information_id=13"><?php echo $text_newinformation; ?></a></li>
but this link can't use the seo derictly.
I want to change the url as the <?php echo $information['href']; ?> to using the SEO derictly?
is anyone can do it ?