Magento - 编辑产品页面html无效

时间:2016-06-14 03:41:42

标签: html magento magento-1.9 product

我试图从Magento编辑产品页面的HTML,但它无法正常工作。 我遵循了一些教程(例如:How to edit product page template in Magento),但没有成功。

我正在编辑" view.phtml"从下面的路径(标准模板): / 网站名称 /应用程序/设计/前端/碱/默认/模板/目录/产品

Edited code

HTML not updated

有什么想法吗?

THX。

2 个答案:

答案 0 :(得分:0)

此文件调用基于主题,因此请检查您的主题文件夹,此文件的路径如下。

from tkinter import *
from tkinter import ttk
from tkinter import messagebox
import math

class MY_BMI_Calculator:
    def __init__(self,master):
    master.title('BMI Calculator')
    def calculate_BMI(self):
        self.inchs = int(self.entry_ft.get())* 12 + int(self.entry_in.get())
        self.BMI = int(self.entry_weight.get())* 703 /math.pow(self.inchs,2)
        return  round(self.BMI,1)

答案 1 :(得分:0)

如果您使用的是RWD(响应式)主题,则可能需要编辑该文件夹结构中的模板。它是1.9.x中的新内容