删除WooCommerce单一产品库中的缩略图编号

时间:2018-01-02 09:25:20

标签: css wordpress image woocommerce product

贝娄,您可能会在每张小图片的左侧看到数字:

enter image description here

如何删除这些数字并将这些图像放在一起?

这些数字使页面非常难看。我试图删除它,但没有找到任何解决方案。

2 个答案:

答案 0 :(得分:1)

只需将以下CSS规则添加到您的活动子主题(或活动主题)var node = svg.selectAll(".node") .data(json.nodes) .enter().append("g") .attr("class", "node") .call(d3.drag() .on("start", dragstarted) .on("drag", dragged) .on("end", dragended)); function dragstarted(d) { if (!d3.event.active) force.alphaTarget(0.3).restart(); d.fx = d.x; d.fy = d.y; } function dragged(d) { d.fx = d3.event.x; d.fy = d3.event.y; } function dragended(d) { if (!d3.event.active) force.alphaTarget(0.3); // d.fx = null; //d.fy = null; } 文件中,即可删除此数字:

styles.css

答案 1 :(得分:-2)

是的,默认情况下,Woocommerce不会在图库图片中包含该数字。您需要检查路径product-thumbnails.php处的product-image.php../woocommerce/templates/single-product/ 要么 这些文件可以被主题覆盖。因此,请检查主题中的woocommerce文件夹..