Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在为一个不希望客户在结账时注册/登录的客户开发我的第一个 Magento 网站。我如何使它成为可选的?
顺便说一句,使用 Magento v. 1.7.0.2
非常感谢,
辛西娅
系统 > 配置 > 结帐 > 结帐选项:允许访客结帐 = 是
我一直在开发一个网页,允许用户根据几个过滤器/标准在数据库中搜索项目。其中一项要求是能够将此数据导出到电子表格 (excel) 中。到目前为止,我已经使用 CSV 文件创建了一个非常简单的方法。
//get model... StringWriter sw = new StringWriter(); //First line for column names sw.WriteLine("col1,col2,col3")