我想列出一些产品列表,因为warungssl..com显示的是产品名称,正常价格,折扣价格,一些属性,指向产品详细信息页面的链接或按钮,以及链接或按钮购物车
在哪个文件中我应该更改脚本代码,而我不明白如何显示多个属性。
注意: 1.要(发行,验证和网站印章)我将调用该属性 数据。我不明白剧本的障碍。 2.我使用Wordpress主题porto 3.以下示例是指属性
也许它可以让我知道我必须更改文件的位置。
答案 0 :(得分:0)
please go to here : wp-content\plugins\woocommerce\templates\archive-product.php
or
please go to here : wp-content\themes\porto\woocommerce\archive-product.php
and put following code:
<?php
global $product;
$greenbar = $product->get_attribute( 'greenbar' );
$issuance = $product->get_attribute( 'issuance' );
$mobile_friendly = $product->get_attribute( 'mobile_friendly' );
$san_support = $product->get_attribute( 'san_support' );
$site_seal = $product->get_attribute( 'site_seal' );
$validation = $product->get_attribute( 'validation' );
$warranty = $product->get_attribute( 'warranty' );
?>