Prestashop删除id类别

时间:2015-06-08 08:11:45

标签: prestashop prestashop-1.6

我是Prestashop用户我试图找到网址类别解决方案

我需要知道删除Prestashop网址的类别ID(数字)的过程。 例如www.mydomain.com/16-myproducts

此致

1 个答案:

答案 0 :(得分:0)

实际上你可能会覆盖Dispatcher.php类。这很大程度上取决于你是哪个版本。

以下是我们去年在Malttt 1.6上做过的事情,请注意这个代码,因为它可能已经过时,它还包括其他案例(产品,供应商......):

data = cgi.FieldStorage()

print ("Content-Type: text/html")
print ()



mfs = data.getvalue("data")

lines = mfs.split(",")

for feature in nwsJson:
    if feature['properties']['id'] not in lines:
        pass
    else:
        print("<li>" +feature['properties']['id']+ "</li>")
相关问题