我已经创建了一个自定义模块来显示一些图像和文本。我希望有一个标题用于这个模块,因为我不想拥有标题frmo网站。我需要一个单独的标题所以我认为我需要为此模块设置不同的标题,或者如何为此模块设置标题?元标题的代码是:
meta charset="utf-8" />
<title>{$meta_title|escape:'html':'UTF-8'}</title>
{if isset($meta_description) AND $meta_description}
<meta name="description" content="{$meta_description|escape:'html':'UTF-8'}" />
{/if}
所以我需要标题为我的标题
有人可以帮助我吗?
答案 0 :(得分:2)
您使用模块创建的页面可能是FrontControllers。否则,现有页面已经具有其目的和元标记。
如果您确实使用FrontController创建了一个页面,那么您可以在 SEO&amp;中为您的页面输入元信息。网址&gt; SEO&amp;网址&gt;添加。在那里,您可以为您的页面输入自定义url-rewrite并获得信息。
答案 1 :(得分:0)
@gskema这是我的模块的php代码:
if (!defined('_PS_VERSION_'))
exit;
class mymodule5 extends Module
{
/* @var boolean error */
protected $_errors = false;
public function __construct()
{
$this->name = 'mymodule5';
$this->tab = 'front_office_features';
$this->version = '1.0';
$this->author = 'author';
$this->need_instance = 0;
parent::__construct();
$this->displayName = $this->l('mymodule5');
$this->description = $this->l('Pagina livrare');
$this->confirmUninstall = $this->l('Are you sure you want to delete this module?');
}
public function install()
{
if (!parent::install())
return false;
return true;
}
public function uninstall()
{
if (!parent::uninstall())
return false;
return true;
}
public function countAllProducts()
{
return Db::getInstance()->getValue('SELECT COUNT(*) from ps_product WHERE active = 1');
}
public function setMedia()
{
parent::setMedia();
$this->addCSS(__PS_BASE_URI__.'modules/'.$this->module->name.'/css/'.$this- >module->name.'.css');
}
}