<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>云美公社 - ECSHOP论坛</title>
    <link>https://ym.gs/f-134-1</link>
    <description>Latest 20 threads of ECSHOP论坛</description>
    <copyright>Copyright(C) 云美公社</copyright>
    <generator>Discuz! Board by Discuz! Team</generator>
    <lastBuildDate>Wed, 03 Jun 2026 16:40:41 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>https://ym.gs/static/image/common/logo_88_31.gif</url>
      <title>云美公社</title>
      <link>https://ym.gs/</link>
    </image>
    <item>
      <title>ecshop 二次开发 加入用户定制商品类型的方法</title>
      <link>https://ym.gs/t-34934-1-1.html</link>
      <description><![CDATA[由于很多用户需要加上商品自定义吃寻大小等 如图



首先在\\admin\\templates\\goods_info.htm里面找到 属性与规格 的位置 发现他调用了{$goods_attr_html}这个页面， 这个函数的定义在\\admin\\goods.php 的第444行 $smarty-&amp;amp;gt;assign(\'goods_attr_html\', build_attr_h ...]]></description>
      <category>ECSHOP论坛</category>
      <author>大地阳光</author>
      <pubDate>Fri, 16 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ecshop缩略图及产品页图模糊(图的质量是80)的两种解决方法</title>
      <link>https://ym.gs/t-34933-1-1.html</link>
      <description><![CDATA[ecshop上传商品图片默认生成jpg缩略图或商品图的质量是80，这些图片看起来有点模糊，客户非常不满意，现提供调整生成jpg图片的质量，解决Ecshop商品缩略图不清晰的方法。 找到includes/cls_image.php文件，在大约250行 


复制代码

代码如下:



/* 生成文件 */ 
i ...]]></description>
      <category>ECSHOP论坛</category>
      <author>没骑士的亚瑟王</author>
      <pubDate>Fri, 16 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ECshop商品相册显示顺序为正序实现方法</title>
      <link>https://ym.gs/t-34932-1-1.html</link>
      <description><![CDATA[我在使用ECshop中当更改商品图片后，这张图片就会置于商品相册的最后一个，于是前台显示放大图就会于相册第一张不同。修改方法很简单： 找到include/lib_goods.php文件中“获得指定商品的相册”的get_goods_gallery函数， 将 


复制代码

代码如下:



” WHERE go ...]]></description>
      <category>ECSHOP论坛</category>
      <author>呢喃低语</author>
      <pubDate>Thu, 15 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ecshop商品批量上传乱码读CSV的方式问题</title>
      <link>https://ym.gs/t-34931-1-1.html</link>
      <description><![CDATA[客户反映，ECShop后台用CSV批量上传商品数据包出现一堆乱码，字段完全对不上。分析了代码后发现，ECShop读CSV的方式弱爆了。在admin/目录下找到good_batch.php这段代码 


复制代码

代码如下:



/*将文件按行读入数组，逐行进行解析*/ 
$line_number=0; 
$arr=arr ...]]></description>
      <category>ECSHOP论坛</category>
      <author>格局天下</author>
      <pubDate>Thu, 15 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ecshop 注册送红包实现代码</title>
      <link>https://ym.gs/t-34930-1-1.html</link>
      <description><![CDATA[在user.php 的注册成功信息显示前面，大概是 show_message(sprintf($_LANG[\'register_success\'].............前面加入 注意下下面的 $bonus_type_id = 1; 需要先在后台加入对应的红包的id 
 


复制代码

代码如下:



//phpsir 1111 
$bonus_type_id=1; 
$bonus  ...]]></description>
      <category>ECSHOP论坛</category>
      <author>金沙江</author>
      <pubDate>Wed, 14 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ecshop显示商品按月统计销售数量</title>
      <link>https://ym.gs/t-34929-1-1.html</link>
      <description><![CDATA[代码如下:


$smarty-&amp;gt;assign(\'goods_count\', get_goods_coun($goods_id)); ，

最后在模板文件goods.dwt中 {$goods_count} 直接调用就行了。


复制代码

代码如下:



/**
* 获取商品出售总数
*
* @access public
* @param integer $goods_id
* @return integer
*/
f ...]]></description>
      <category>ECSHOP论坛</category>
      <author>会飞的锅巴</author>
      <pubDate>Wed, 14 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>调用ecshop商品顶级分类ID和NAME的二种方法</title>
      <link>https://ym.gs/t-34928-1-1.html</link>
      <description><![CDATA[方法一，直接使用php打开需要获取商品顶级分类的php文件


复制代码

代码如下:



$cat_arr = get_parent_cats($goods[\'cat_id\']);
foreach ($cat_arr AS $val)
{
$goods[\'topcat_id\']=$val[\'cat_id\'];
$goods[\'topcat_name\']=$val[\'cat_name\'];
}

方法二,修改成模板 ...]]></description>
      <category>ECSHOP论坛</category>
      <author>壹叶香茶庄</author>
      <pubDate>Tue, 13 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ecshop数据库ecs_stats短时间内会变很大的解决方法</title>
      <link>https://ym.gs/t-34927-1-1.html</link>
      <description><![CDATA[ecs_stats表是记录访问日志的，短时间内会增加很多数据库存储空间，而且记录访问日志对网站的性能也有影响，建议清空日志表所有记录，登陆后台-&amp;gt;数据库管理-&amp;gt;Sql查询，可以运行SQL语句：truncate table ecs_stats 来清空，然后在商店设置那里关闭日志记录功能，这样就 ...]]></description>
      <category>ECSHOP论坛</category>
      <author>耿静</author>
      <pubDate>Tue, 13 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ecshop邮件服务器设置方法</title>
      <link>https://ym.gs/t-34926-1-1.html</link>
      <description><![CDATA[参考以上图片。

邮件服务：我们一般选择其他smtp服务

ssl ： 默认就行

发送邮件服务器地址(smtp)：输入smtp.126.com 如果是qq邮箱的话输入 smtp.qq.com

服务器端口：默认就行

邮件发送账号：你邮箱地址 比如eeeen@126.com 如果是qq邮箱就输入qq邮箱地址 比如123 ...]]></description>
      <category>ECSHOP论坛</category>
      <author>草荠一枚</author>
      <pubDate>Mon, 12 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ecshop购物车消失后产品只能单件购买的解决方法(一步购物设置方法)</title>
      <link>https://ym.gs/t-34925-1-1.html</link>
      <description><![CDATA[今天一个客户遇到这样的问题

“每次我选择点击一件商品加入购物车，然后购物车里面就只有最后的一件，其他的我选入购物车的商品都没有，购物车里面都默认最后点击的那个商品才在购物车里面出现!!!”

看到客户这样的问题之后我们并未理解是何意思，于是要来客户网站一 ...]]></description>
      <category>ECSHOP论坛</category>
      <author>迟早会来</author>
      <pubDate>Mon, 12 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>设置ecshop的wap版本head部分首页标题的方法</title>
      <link>https://ym.gs/t-34924-1-1.html</link>
      <description><![CDATA[在\\mobile\\templates下文件有index.html，修改该文件head部分代码，如下： 



&amp;lt;head&amp;gt;  


&amp;lt;meta http-equiv=\&quot;Content-Type\&quot; content=\&quot;text/html; charset=utf-8\&quot; /&amp;gt;  


&amp;lt;title&amp;gt;ECShop_mobile&amp;lt;/title&amp;gt;  


&amp;lt;/head&amp;gt;  




修改为 



&amp;lt;head&amp;gt;  


&amp;lt;met]]></description>
      <category>ECSHOP论坛</category>
      <author>小兔子一点都不乖</author>
      <pubDate>Sun, 11 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ecshop增加多个产品详细描述编辑器的方法</title>
      <link>https://ym.gs/t-34923-1-1.html</link>
      <description><![CDATA[在做商产品详情的时候，经常会有选项卡类似的几个产品说明，如：商品详情，商品规格，参数列表，售后服务等。 Ecshop后台里面默认只有一个编辑框（器），那么我们还得自己添加几个，以下是ecshop如何增加产品描述编辑器个数的步骤： 1）在数据库的表esc_goods里增加 ...]]></description>
      <category>ECSHOP论坛</category>
      <author>仕君</author>
      <pubDate>Sat, 10 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ecshop中如何添加限时抢购功能可以看到一个倒计时</title>
      <link>https://ym.gs/t-34922-1-1.html</link>
      <description><![CDATA[第1步：在后台admin / templates / goods_info.htm中找到大概164行至173行修改以下代码 


复制代码

代码如下:



&amp;lt;tr&amp;gt; 
&amp;lt;td&amp;gt;&amp;lt;label for=\&quot;is_promote\&quot;&amp;gt; 
&amp;lt;input type=\&quot;checkbox\&quot; id=\&quot;is_promote_switch\&quot; name=\&quot;is_promote_switch\&quot; {if $goods.is_promote}checked=\&quot; ...]]></description>
      <category>ECSHOP论坛</category>
      <author>余良兵</author>
      <pubDate>Fri, 09 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ECSHOPv2.7.2首页商品列表调用该商品所属分类名称及链接地址修改方法</title>
      <link>https://ym.gs/t-34921-1-1.html</link>
      <description><![CDATA[使用ecshop开发过程中要求在首页循环调用新品、精品、热销的商品列表，同时调用该商品的所属于的那个分类，点击这个分类，可以链接到该分类。

所用ecshop版本为v2.7.2 RELEASE 20100604，修改方法如下：

在文件includes/lib_goods.php约289行修改成如下：

 



代 ...]]></description>
      <category>ECSHOP论坛</category>
      <author>不死明殊</author>
      <pubDate>Fri, 09 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ecshop二次开发之购物车分析</title>
      <link>https://ym.gs/t-34920-1-1.html</link>
      <description><![CDATA[本文实例讲述了ecshop二次开发之购物车分析。分享给大家供大家参考。具体分析如下：

一、保存用户购物车数据

ECSHOP的购物车数据，是以Session 方式存储在数据库里，并在Session结束后 ，Distroy 掉，解决方法是:

1.购物车内容读取方式. 更改登陆后购物车获取条件 \&quot; ...]]></description>
      <category>ECSHOP论坛</category>
      <author>周末我不在地球</author>
      <pubDate>Wed, 07 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ecshop二次开发之表结构分析</title>
      <link>https://ym.gs/t-34919-1-1.html</link>
      <description><![CDATA[本文实例讲述了ecshop二次开发之表结构分析。分享给大家供大家参考。具体如下：

ecshop二次开发首先要弄清楚各个数据库表的内容和数据库表之间的关系，这样有助于ecshop二次开发！

下面我就介绍一下 ecshop数据库表的结构

Ecs_account_log--用户帐号情况记录表，包 ...]]></description>
      <category>ECSHOP论坛</category>
      <author>阮小坏</author>
      <pubDate>Wed, 07 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>Ecshop二次开发之自定义库文件和模板数据调用实例</title>
      <link>https://ym.gs/t-34918-1-1.html</link>
      <description><![CDATA[本文实例讲述了Ecshop二次开发之自定义库文件和模板数据调用方法。分享给大家供大家参考。具体方法如下：

Smarty的标签非常多，也比较繁琐，所以Ecshop使用了精简版的Smarty，其中用到的Smarty模板语法：

{$keywords} 输出模板变量
{$array.test.abc} 输出二维数组
{ ...]]></description>
      <category>ECSHOP论坛</category>
      <author>爱腊梅</author>
      <pubDate>Tue, 06 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ecshop配送方式里同时出现两个顺丰快递的解决方法</title>
      <link>https://ym.gs/t-34917-1-1.html</link>
      <description><![CDATA[ecshop配送方式里同时出现两个顺丰快递问题； 这是因为顺丰快递的配送插件那区域设置重复了 留下一个全国即可解决问题ECShop提交订单时配送方式多显示出一个空白块ECShop提交订单时配送方式多显示出一个空白块，那就是选中的宝贝加入到购物车后到结算中心的时候在而配 ...]]></description>
      <category>ECSHOP论坛</category>
      <author>铁锅炖企鹅</author>
      <pubDate>Tue, 06 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>ecshop中设置顺丰快递支持货到付款的方法</title>
      <link>https://ym.gs/t-34916-1-1.html</link>
      <description><![CDATA[ecshop里面的很多快递信息都比较旧了，可能很久都没有更新，必须顺丰快递就支持了货到付款，但是却不能设置，只有等到用户付款以后才能发货，确实比较麻烦，那么ecshop如何设置顺丰快递支持货到付款呢？ 第一步：查看当前的配送方式是否支持货到付款。 
ECSHOP支持货 ...]]></description>
      <category>ECSHOP论坛</category>
      <author>眼见为实</author>
      <pubDate>Mon, 05 Jun 2023 16:00:00 +0000</pubDate>
    </item>
    <item>
      <title>分享几个Ecshop中二次开发的常见方法</title>
      <link>https://ym.gs/t-34915-1-1.html</link>
      <description><![CDATA[收货人信息的省市区设成非必选项 
一般面向国外用户的ECSHOP商城，可能会有这方面的需求：【将Ecshop中收货人信息的省市区设成非必选项】，其实也就是只留一个“请选择国家”的下拉选择框。 
修改相关JS文件 
打开 /js/shopping_flow.js 文件，将下面JS代码删除掉

 ...]]></description>
      <category>ECSHOP论坛</category>
      <author>各人自扫门前雪莫管他人瓦上霜</author>
      <pubDate>Mon, 05 Jun 2023 16:00:00 +0000</pubDate>
    </item>
  </channel>
</rss>