我有一个magento网站,我已经安装了neotheme's nBlog magento extension。此扩展程序使用“frontend URL key's
”值作为博客页面标题。但我想把它改成我的愿望。我没有解决方案而深入研究扩展代码。任何帮助表示赞赏。
答案 0 :(得分:1)
而不是硬编码'标题'对于博客的价值,您可以在扩展程序的后端配置中创建一个选项,以添加博客页面标题。为此,您需要进行以下更改: -
1.在社区/ NeoTheme / Blog / etc / system.xml周围的行号。 149添加''用于'新博客页面标题选项的标记(在下方:标记)'在配置中: -
<blog_page_title translate="label" module="neotheme_blog">
<label>Blog Page Title</label>
<comment><![CDATA[This will appear as title for Blog Page Only]]></comment>
<frontend_type>text</frontend_type>
<sort_order>56</sort_order>
<show_in_default>1</show_in_default>
<show_in_website>1</show_in_website>
<show_in_store>1</show_in_store></blog_page_title>
从:
return self::getFrontendName(true);
为:
$blogTitle = Mage::getStoreConfig('blog/general/blog_page_title');
if (!$blogTitle) {
$blogTitle = self::FRONTEND_NAME;
}
$blogTitle = ucfirst($blogTitle);
return $blogTitle;
以下是截图: