ecshop商品详情中的用户评论中可以显示图片

2016-07-07 14:55 来源:www.chinab4c.com 作者:ecshop专家


  1. 前台商品评论
  2. 打开 includes/lib_main.php
  3. 会员评论 (不建议使用) 约 1590
  4. $arr[$row['comment_id']]['content'] = str_replace('\r\n', '
  5. ', htmlspecialchars($row['content']));
  6. 改为
  7. $arr[$row['comment_id']]['content'] = str_replace('\r\n', '
  8. ', $row['content']);
  9. 管理员回复 约 1603
  10. $arr[$row['parent_id']]['re_content'] = nl2br(str_replace('\n', '
  11. ', htmlspecialchars($row['content'])));
  12. 改为
  13. $arr[$row['parent_id']]['re_content'] = nl2br(str_replace('\n', '
  14. ', $row['content']));

  15. 后台
  16. 打开 admin/comment_manage.php
  17. 会员评论 (不建议使用) 约 89
  18. $comment_info['content'] = str_replace('\r\n', '
  19. ', htmlspecialchars($comment_info['content']));
  20. 改为
  21. $comment_info['content'] = str_replace('\r\n', '
  22. ', $comment_info['content']);
  23. 管理员回复 约 104
  24. $reply_info['content'] = nl2br(htmlspecialchars($reply_info['content']));
  25. 改为
  26. $reply_info['content'] = nl2br($reply_info['content']);

  27. 就是删除htmlspecialchar s函数
  28. 会员评论会有安全性问题,不建议使用
  29. 管理员回覆时使用HTML语法即可
  30. 如果图片太大会撑破版面
  31. 可在page_header.lbi前面 加入
  32. <link href=shadowbox.css rel=stylesheet type=text/css /> <script type=text/javascript src=js/shadowbox.js></script> <script type=text/javascript> Shadowbox.init({ handleOversize: "drag", modal: true }); </script>

  33. 然后图片使用
  34. <a href="图片网址"><img src="图片网址" width="缩图宽度" />[/url]
复制代码

开发交流群129370737

回答:
通过id_value取得thumb

顶一下。。。。。

这个好咯

留个记号先

好贴,强烈支持