新产品导入不可见前端但有后端

时间:2016-08-20 06:15:52

标签: magento import magento-1.9

当我通过excel导入产品时,产品在后端但在前端看不到,那就是,当我手动保存产品时,只有产品显示在前端。如何手动保存所有产品,浪费我的时间。

2 个答案:

答案 0 :(得分:0)

与您的情况一样,仅在手动保存产品时在前端显示的产品,您可以Catalog > Manage Products一次保存所有产品,在Actions& updtate attributes下选择Catalog, Search。而不是选择Visibility下的var canvas = new fabric.Canvas("c", {selection: false}); var polygon = new fabric.Polygon([ new fabric.Point(200, 50), new fabric.Point(250, 150), new fabric.Point(150, 150) ]); polygon.on("modified", function () { var matrix = this.calcTransformMatrix(); var transformedPoints = this.get("points") .map(function(p){ return new fabric.Point(p.x - polygon.minX -polygon.width/2, p.y - polygon.minY - polygon.height/2); }) .map(function(p){ return fabric.util.transformPoint(p, matrix); }); var circles = transformedPoints.map(function(p){ return new fabric.Circle({ left: p.x, top: p.y, radius: 3, fill: "red", originX: "center", originY: "center", hasControls: false, hasBorders: false, selectable: false }); }); this.canvas.clear().add(this).add.apply(this.canvas, circles).setActiveObject(this).renderAll(); }); canvas.add(polygon).renderAll();&保存。链接:here

答案 1 :(得分:0)

您的产品未在fronend中显示的原因是因为magento从索引中加载产品。检查您的catalog_product_flat_ *产品是否存在。 请在上传产品后运行索引。您可以在

下找到
system/index management menu.
相关问题