希望在产品页面 magento 的侧边栏中显示产品评论
我希望在 magento 中该产品页面的侧边栏中显示产品的最新评论(可能是 3 或 4)。
显示评论的前 10 或 15 个单词、星形栏和评论页面的链接以查看所有评论..
非常感谢任何建议或指示,
谢谢,
约翰尼
I'm looking to show the most recent reviews for a product (maybe 3 or 4) in the sidebar on that products page in magento.
Showing the first 10 or 15 words of the review, the star bar and a link to the reviews page to see all the reviews..
any advice or pointers greatly appreciated,
Thanks,
Johnny
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
正如 ElGabby 所说,创建扩展将是正确的选择。
但您可以通过编辑当前布局来做到这一点。
转到 /app/design/frontend/default/[your theme]/layout/ 或 /app/design/frontend/base/[your theme]/layout/ 中的文件catalog.xml
找到该部分:
在那里你可能有像这样的部分:
在该部分中添加:
我的示例中的部分如下所示:
保存文件并在以下位置创建一个新文件:
/app/design/frontend/default/[your theme]/design/review/rightbar.phtml
该文件的内容类似于:
As ElGabby said, creating a extension would be the way to go.
But you can do this by editing your current layout.
Go to the file catalog.xml in /app/design/frontend/default/[your theme]/layout/ or /app/design/frontend/base/[your theme]/layout/
find the section:
in there you proberly have a section like:
in that section add:
the section in my example look like this:
save the file and create a new file in:
/app/design/frontend/default/[your theme]/design/review/rightbar.phtml
content of that file would be something like:
HTH :)
HTH :)