ecshop二次开发 百度地图
1. 在ecshop后台找到文章管理->文章分类->添加文章分类,添加一个顶级分类,叫做“合作单位”,并且让其显示在导航栏
2. .在ecshop后台找到文章管理->文章列表->添加新文章。(文章标题:八维研修学院;文章分类:合作单位;文章重要性:普通;是否显示:是,等等一些东西完善了)
3.ecshop/languages/zh_cn/admin/article.php 在第56行 添加 $_LANG['baidu_map'] = '百度地图';
4.ecshop/admin/templates/article_info.htm 在
{$lang.tab_goods}
{$lang.baidu_map}
ecshop后台文章管理->文章列表->编辑文章内容,可以看到导航标签多了一个百度地图
$sql = "INSERT INTO ".$ecs->table('article')."(title, cat_id, article_type, is_open, author, "."author_email, keywords, content, add_time, file_url, open_type, link, description,point_x,point_y) "."VALUES ('$_POST[title]', '$_POST[article_cat]', '$_POST[article_type]', '$_POST[is_open]', "."'$_POST[author]', '$_POST[author_email]', '$_POST[keywords]', '$_POST[FCKeditor1]', "."'$add_time', '$file_url', '$open_type', '$_POST[link_url]', '$_POST[description]','$_POST[point_x]','$_POST[point_y]')";
$db->query($sql);
:
if ($exc->edit("title='$_POST[title]', cat_id='$_POST[article_cat]', article_type='$_POST[article_type]', is_open='$_POST[is_open]', author='$_POST[author]', author_email='$_POST[author_email]', keywords ='$_POST[keywords]', file_url ='$file_url', open_type='$open_type', content='$_POST[FCKeditor1]', link='$_POST[link_url]', description = '$_POST[description]',point_x = '$_POST[point_x]',point_y = '$_POST[point_y]'", $_POST['id']))
if(isset($article) && $article['cat_id'] > 2) 替换if(isset($article) && $article['cat_id'] > 2)
{
if($article['cat_id']==13){
$smarty->display('article_company.dwt', $cache_id);
}else{
$smarty->display('article.dwt', $cache_id);
}
// $smarty->display('article.dwt', $cache_id);
}
之后
{* ak可以用自己在百度上的秘钥*}
{$article.content}
之后添加