我想为每个属性添加一个链接,以便在点击访问者时选择变体。
基本上为每个术语添加一个链接,例如https://exampl.com/product/t-shirt/?attribute_pa_size=l 。
基于Woocommerce Archives答案代码上的显示变量产品属性和术语,我尝试使用以下方法插入术语链接:
$term_link = get_term_link( $term );
但它没有提供指向所选产品属性的链接。
任何帮助表示赞赏。
我想为每个属性添加一个链接,以便在点击访问者时选择变体。
基本上为每个术语添加一个链接,例如https://exampl.com/product/t-shirt/?attribute_pa_size=l 。
基于Woocommerce Archives答案代码上的显示变量产品属性和术语,我尝试使用以下方法插入术语链接:
$term_link = get_term_link( $term );
但它没有提供指向所选产品属性的链接。
任何帮助表示赞赏。
当您有多个属性时,变体的链接是来自每个属性的术语的组合……因此,您不能在术语本身上建立链接,这将指向特定的变体,因为一个术语与多个变体相关。
所以你需要一些不同的东西。最好的方法是列出可变产品的所有可见变体,显示它们与产品循环中的变体相关联的属性,如下所示:
add_action( 'woocommerce_after_shop_loop_item', 'product_variable_linked_variations_on_loop', 7 );
function product_variable_linked_variations_on_loop() {
global $product;
if( $product->is_type('variable') ) { // Only for variable products
$output = array(); // Initializing
// Loop through visible children Ids (variations ids)
foreach( $product->get_visible_children() as $variation_id ) {
$variation = wc_get_product($variation_id); // The varition object instance
$permalink = $variation->get_permalink(); // The link to the variation
$attributes = array(); // Initializing
// Loop through attributes
foreach( $variation->get_attributes() as $attribute => $value ) {
$attribute_label = wc_attribute_label( $attribute, $product );
$attribute_value = $variation->get_attribute($attribute);
$attributes[] = $attribute_label . ': ' . $attribute_value;
}
$output[] = '<a href="' . $permalink . '">' . implode(', ', $attributes) . '</a>';
}
echo '<div class="product-attributes">';
echo '<span>' . implode('</span><br><span>', $output) . '</span>';
echo '</div>';
}
}
代码位于活动子主题(或活动主题)的 functions.php 文件中。测试和工作。