Prestsahop Meta title



我创建了一个自定义模块来显示一些图像和文本。我想有一个标题为这个模块,因为我不想有标题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}

所以我需要标题成为我的标题

有人能帮我吗?

您用模块创建的页面可能是FrontControllers。否则,现有页面已经有了它们的目的和元标记。

如果你确实使用FrontController创建了一个页面,那么你可以在SEO中为你的页面输入元信息;URL>SEO&URL>添加。在那里,你可以为你的页面和会议信息输入自定义url重写。

@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');
}  
}

相关内容

  • 没有找到相关文章

最新更新