如何在neotheme nblog中更改博客的页面标题

时间:2015-07-02 05:58:11

标签: magento

我有一个magento网站,我已经安装了neotheme's nBlog magento extension。此扩展程序使用“frontend URL key's”值作为博客页面标题。但我想把它改成我的愿望。我没有解决方案而深入研究扩展代码。任何帮助表示赞赏。

1 个答案:

答案 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>
  1. 在社区/ NeoTheme / Blog / Helper / Data.php周围的行号。 229更改静态公共函数getBlogTitle()&#39;中的代码功能: -
  2. 从:

    return self::getFrontendName(true); 
    

    为:

    $blogTitle = Mage::getStoreConfig('blog/general/blog_page_title');
    
        if (!$blogTitle) {
    
            $blogTitle = self::FRONTEND_NAME;
    
        }
    
       $blogTitle = ucfirst($blogTitle);
    
       return $blogTitle;
    

    以下是截图:

    enter image description here