SHOPEX去除版权教程
一、去除版权 (ShopEx 4.8.5.55324)
文件位置:
用记事本编辑一个新的function.footer.php文件,替换掉 core\include_v5\smartyplugins\function.footer.php
新的function.footer.php内容如下:
<?php支付分怎么开通
/**-------------------
*** ***
ShopEx 4.8.5.55324
-------------------**/
function tpl_function_footer( $params, &$smarty )
else
$theme_dir = $system->base_url( )."themes/".$output->theme;
echo $smarty->_fetch_compile_include( "shop:common/footer.html", array(
"theme_dir" => $theme_dir,
"certtext" => "<a href=\"v/ \" target=\"blank\">".$system->getConf( "xt" )."</a>",
"mini_cart" => $system->getConf( "site.buy.target" ) == 3,
"passport_login" => $system->getConf( "fig.current_use" ),
"preview_theme" => $system->in_preview_theme,
"im_setting" => $data,
"system_url" => $system->base_url( ),
"stateString" => "cron=".urlencode( $system->request['action']['controller'].":".$system->request['action']['method'] )."&p=".urlencode( $system->request['action']['args'][0] ),
"certi_id" => $system->getConf( "certificate.id" ),
"openid_lg_url" => urlencode( $system->base_url( ) ),
"openid_open" => $open_id_login
) );
if ( constant( "SHOP_DEVELOPER" ) )
if ( $system->getConf( "shopex.wss.show" ) )
if ( $system->getConf( "certificate.channel.status" ) && $system->getConf( "certificate.channel.status" ) === true )
if ( $system->getConf( "site.shopex_certify" ) == 0 )
if ( constant( "SAAS_MODE" ) )
else
if ( $system->use_gzip )
else
$themeFoot = "<div class=\"themefoot\">".$system->getConf( "system.foot_edit" )."</div>";
$PoweredStr = "<div style=\"font-family:Verdana;line-height:20px!important;height:auto!important;font-size:11px!important;text-align:center;overflow:none!importa nt;text-indent:0!important;\">";
if ( $channel )
if ( $system->getConf( "xt" ) )
if ( $wssjs )
$PoweredStr .= "</div>";
}
return $html.$themeFoot.$PoweredStr;
}
?>
注意:
1,版本为 :ShopEx 4.8.5.55324
2,只限 ShopEx 测试使用
二:隐藏方法 (适用于任何版本)
打开模版文件夹下的block文件夹,到footer.html文件,到<>字串,然后把它修改成
<div style=”height:150px;width:1003px;overflow:hidden”><></div>
以上代码的意思就是,把<>放进一个高度为150像素,宽度为1003像素的DIV表格中,超出的内容部分将被隐藏。在实际 操作中,height和width的值需要根据你底部信息内容的多少来设定,你可以反复修改height和width值,直到满意为止。此外,Style 部分的内容,也可以放到模版的CSS文件里,然后调用class信息。如在CSS文件里放如下class代码:
.footer
相应的,footer.html里的代码修改为:
<div><></div>
发布评论