gpt4 book ai didi

php - 在 WooCommerce 存档页面中显示产品属性标签和值

转载 作者:行者123 更新时间:2023-11-28 00:50:09 26 4
gpt4 key购买 nike

我有简单产品和可变产品。我还有一个插件,用于在商店中单独显示每个变体,而不仅仅是其父项。我设置了 4 个属性,每个属性都有几个可能的值,所有产品可能共享全部或部分这些属性。将来可能会有更多属性,它们可能适用于所有产品或仅适用于部分产品。

我需要在每个变体(以及简单产品)下和父变体下仅显示相应产品具有的标签和值属性 - 而不是可能适用于该属性的所有可能值。

最后,必须考虑到该网站使用 WPML 的语言不止一种。

为此,我使用了以下有效的代码,但这意味着为每个属性重复相同的代码(您可以看到我重复了 4 次相同的代码)。肯定有一种方法可以结合 foreach 循环来完成这项工作。我已经用我在 StackExchange 中看到的相同示例多次尝试此操作,但无济于事。

add_action( 'woocommerce_after_shop_loop_item_title', 'add_attributes_terms', 1);

function add_attributes_terms() {

$tax_bar = 'pa_bar-colour';
$tax_but = 'pa_button-colour';
$tax_caps = 'pa_caps-colour';
$tax_cas = 'pa_lock-cases-colour';
$att_bar = get_the_terms( $product->id, $tax_bar);
$att_but = get_the_terms( $product->id, $tax_but);
$att_caps = get_the_terms( $product->id, $tax_caps);
$att_cas = get_the_terms( $product->id, $tax_cas);


?><div style="font-size: 11px; overflow: overlay; padding: 0px 5px 15px 5px; line-height: 13px;"><?php
if (! empty($att_bar)) {
?><div style="overflow: overlay;"><?php
echo '<span style=" float: left; color: #444;">' . str_replace(" colour", "", get_taxonomy($tax_bar)->labels->singular_name) . ':&nbsp;&nbsp;</span>';
?><div style="overflow: overlay; color: #959595;"><?php
if ( $att_bar && ! is_wp_error( $$att_bar )): foreach ( $att_bar as $attributes_name ){
echo '<span>' . ' ' . $attributes_name->name . ' ' . '</span>';
}
endif;
?></div><?php
?></div><?php
}
if (! empty($att_but)) {
?><div class="b2" style="overflow: overlay;"><?php
echo '<span style=" float: left; color: #444;">' . str_replace(" colour","", get_taxonomy($tax_but)->labels->singular_name) . ':&nbsp;&nbsp;</span>';
?><div style="overflow: overlay; color: #959595;"><?php
if ( $att_but && ! is_wp_error( $$att_but )): foreach ( $att_but as $attributes_name ){
echo '<span>' . ' ' . $attributes_name->name . ' ' . '</span>';
}
endif;
?></div><?php
?></div><?php
}
if (! empty($att_caps)) {
?><div style="overflow: overlay;"><?php
echo '<span style=" float: left; color: #444;">' . str_replace(" colour","", get_taxonomy($tax_caps)->labels->singular_name) . ':&nbsp;&nbsp;</span>';
?><div style="overflow: overlay; color: #959595;"><?php
if ( $att_caps && ! is_wp_error( $$att_caps )): foreach ( $att_caps as $attributes_name ){
echo '<span>' . ' ' . $attributes_name->name . ' ' . '</span>';
}
endif;
?></div><?php
?></div><?php
}
if (! empty($att_cas)) {
?><div style="overflow: overlay;"><?php
echo '<span style=" float: left; color: #444;">' . str_replace(" colour","", get_taxonomy($tax_cas)->labels->singular_name) . ':&nbsp;&nbsp;</span>';
?><div style="overflow: overlay; color: #959595;"><?php
if ( $att_cas && ! is_wp_error( $$att_cas )): foreach ( $att_cas as $attributes_name ){
echo '<span>' . ' ' . $attributes_name->name . ' ' . '</span>';
}
endif;
?></div><?php
?></div><?php
}
?></div><?php
}

如何压缩此代码以避免 html block 重复?

如何获取所有产品类型的所有属性,而对于产品变体仅获取选定的属性值?

在我收到所有输入后,我的最终代码已经可以正常工作了:

add_action( 'woocommerce_after_shop_loop_item_title', 'add_attributes_terms', 1);
function add_attributes_terms() {
global $product;

?><div style="font-size: 10px; overflow: overlay; padding: 6px 10px 6px 10px; line-height: 13px; box-shadow: inset 0 0 5px rgba(0,0,0,0.1), inset 0 3px 2px rgba(0,0,0,0.1);"><?php
// Loop through each defined attribute
foreach( $product->get_attributes() as $taxonomy => $values ){
$terms = $product->get_attribute( $taxonomy );
if(!empty($terms)){
?><div style="overflow: overlay;"><?php
echo '<span id="shop_labels" style=" float: left; color: #444;">' . str_replace([" colour", "Cor da ", "Cor do ", "Cor das ", " de parede"], ["","","","",""], wc_attribute_label($taxonomy)) . ':&nbsp;&nbsp;</span>';
echo '<div style="color: #959595;">' . $terms . '</div>';
?></div><?php
}
}
?></div><?php
}

最佳答案

更新

以下代码将:

  • 压缩代码
  • 自动显示属性名称 + 值对(无需定义)。
  • 专门针对产品变体,它将仅显示选定的属性值。

代码:

add_action( 'woocommerce_after_shop_loop_item_title', 'shop_loop_display_product_attributes', 4);
function shop_loop_display_product_attributes() {
global $product;
$attributes = array();

echo '<div style="font-size: 11px; overflow: overlay; padding: 0px 5px 15px 5px; line-height: 13px;">';

// Loop through each defined attribute
foreach ( $product->get_attributes() as $taxonomy => $values ) {
$term_names = array();

// Get the class for only 'pa_button-colour' case
$class = $taxonomy == 'pa_button-colour' ? ' class="b2"' : '';

$taxonomy_label = get_taxonomy($taxonomy)->labels->singular_name;
$label_name = str_replace(" colour", "", $taxonomy_label );

echo '<div'. $class .' style="overflow: overlay;">
<span style=" float: left; color: #444;">'.$label_name.':&nbsp;&nbsp;</span>';

if( $product->is_type('variation') ) // Product variation type (For your plugin)
{
$term_names[] = get_term_by( 'slug', $values, $taxonomy )->name;
}
else // Other product types
{
$term_ids = $values->get_options();
foreach ( $term_ids as $term ) {
$term_names[] = get_term( $term, $taxonomy )->name;
}
}
if ( count($term_names) != 0 ) {
echo '<div style="overflow: overlay; color: #959595;">
<span> ' . implode( ' </span><span> ', $term_names ) . ' </span>
</div>';
}
echo '</div>';
}
echo '</div>';
}

这段代码已经过测试,不会输出任何错误……它应该适合您。

关于php - 在 WooCommerce 存档页面中显示产品属性标签和值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47959648/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com