您现在的位置是:首页 > 教程 > ecshop商城教程ecshop商城教程
ecshop配送方式怎么隐藏
沛珊2023-12-10 22:23:08ecshop商城教程已有人查阅
导读首先登陆ecshop后台?点击进入配送方式选项 只保留一个配送方式 其他的全部卸载然后打开模板文件目录下的flow.dwt文件
首先登陆ecshop后台?点击进入配送方式选项 只保留一个配送方式 其他的全部卸载然后打开模板文件目录下的flow.dwt文件
搜索
<div class="flowBox">
<h6><span>{$lang.shipping_method}</span></h6>
修改为
<div class="flowBox" style="display:none">
<h6><span>{$lang.shipping_method}</span></h6>
搜索
<input name="shipping" type="radio" value="{$shipping.shipping_id}" {if $order.shipping_id eq $shipping.shipping_id}checked="true"{/if} supportCod="{$shipping.support_cod}" insure="{$shipping.insure}" onload="selectShipping(this)" checked="checked" />
修改为
<input id="shipping" name="shipping" type="radio" value="{$shipping.shipping_id}" {if $order.shipping_id eq $shipping.shipping_id}checked="true"{/if} supportCod="{$shipping.support_cod}" insure="{$shipping.insure}" onload="selectShipping(this)" checked="checked" />
修改完成之后 在文件底部加入
<script>
onload=selectShipping(document.getElementById('shipping'));
</script>
结束后清除缓存尝试
本文标签:
很赞哦! ()
相关文章
随机图文
-
在ecshop文章列表页里面显示简单摘要的方法
本教程中讲到的“内容摘要”指的是文章内容的前 60个字符(当然也可以是前40个,前50个等等)下面以 官方默认模板 为例进行讲解: -
ecshop模板制作教程,ecshop模板标签大全整理
ECSHOP模板制作修改经常用到ECSHOP模板标签:页面关键字 {$keywords }页面标题 {$page_title}产品分类父分类列表 -
ecshop文章列表显示缩略图与文章简介网页描述方法
ECSHOP文章列表显示缩略图与文章简介网页描述-ecshop二次开发方法:1)、修改 includes/lib_article.php 文件,将 -
ecshop微信登录配置,ecshoph5微信登录一直循环授权登录怎么办?
ecshop4.0微信登录配置_h5微信登录一直授权登录怎么办? 在后台设置完微信登录:AppID 及 对应的APPSecret在微信端打开手机端h5出现
留言与评论 (共有 条评论) |