程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> ecmall模板編輯中的標題如何自定義讀取,ecmall模板

ecmall模板編輯中的標題如何自定義讀取,ecmall模板

編輯:關於PHP編程

ecmall模板編輯中的標題如何自定義讀取,ecmall模板


碰見了一個問題,剛上線的ecmall項目。客戶說標題不要商城首頁這四個字。

我去源碼裡找,找了半天才找到。

問題描述如下:

找到title的最原始模板themes\mall\tmall\top.html,打開後:

 


 
  1. <head>  
  2. <base href="{$site_url}/" />  
  3. <meta http-equiv="Content-Type" content="text/html; charset={$charset}" />  
  4.   
  5. <span >{$page_seo}</span>  
  6. <meta name="viewport" content="width=1200, initial-scale=1.0, minimum-scale=0.5, maximum-scale=2.0, user-scalable=yes" />       
  7. <meta name="apple-mobile-web-app-capable" content="yes" />      
  8. <meta name="format-detection" content="telephone=no" />     
  9. <link rel="shortcut icon" href=" http://www.ya-jing.cn "/>  


標簽為:$page_seo

 

這個title description keywords 寫到一起了。如果單改title,需要找到ecmall中的$page_seo的定義處。

找了一大圈,終於找到。在這裡:\app\default.app.php

打開如下:

 


 
  1. <?php  
  2.   
  3. class DefaultApp extends MallbaseApp  
  4. {  
  5.     function index()  
  6.     {  
  7.         $this->assign('index', 1); // 標識當前頁面是首頁,用於設置導航狀態  
  8.         $this->assign('icp_number', Conf::get('icp_number'));  
  9.   
  10.         $this->_config_seo(array(  
  11.         <strong><span >    'title' => Lang::get('mall_index') . ' - ' . Conf::get('site_title'),</span></strong>  
  12.               
  13.         ));  
  14.         $this->assign('page_description', Conf::get('site_description'));  
  15.         $this->assign('page_keywords', Conf::get('site_keywords'));  
  16.         $this->display('index.html');  
  17.     }  
  18. }  
  19.   
  20. ?>  

其中紅色標記中的代碼,去掉lang::get(‘mall_index’).就可以了。

 

項目地址:www.meichigou.com,今天新上線。歡迎大家指導。另外,還有兩個項目也在進行中,其中一個www.ya-jing.cn配資公司進行的很順利。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved