在 WooCommerce 中,我使用WC Variations Radio Buttons插件(由 8manos 提供)用Radio Buttons替换典型的下拉选择器。
我已将以下代码添加到我的子主题中function.php
:
// Display the product variation price inside the variations dropdown.
add_filter( 'woocommerce_variation_option_name', 'display_price_in_variation_option_name' );
function display_price_in_variation_option_name( $term ) {
global $wpdb, $product;
if ( empty( $term ) ) return $term;
if ( empty( $product->id ) ) return $term;
$result = $wpdb->get_col( "SELECT slug FROM {$wpdb->prefix}terms WHERE name = '$term'" );
$term_slug = ( !empty( $result ) ) ? $result[0] : $term;
$query = "SELECT postmeta.post_id AS product_id
FROM {$wpdb->prefix}postmeta AS postmeta
LEFT JOIN {$wpdb->prefix}posts AS products ON ( products.ID = postmeta.post_id )
WHERE postmeta.meta_key LIKE 'attribute_%'
AND postmeta.meta_value = '$term_slug'
AND products.post_parent = $product->id";
$variation_id = $wpdb->get_col( $query );
$parent = wp_get_post_parent_id( $variation_id[0] );
if ( $parent > 0 ) {
$_product = new WC_Product_Variation( $variation_id[0] );
return '' ."<font size='3' face='Lato'>". wp_kses( woocommerce_price( $_product->get_price() ), array() ) . "<font size='3' color='red' face='Lato' style='normal' weight='300'>".' - ('.$term.')';
}
return $term;
}
我已经能够设置所有四个变体名称的样式,只是为了看看是否可行。虽然,我需要它们中的每一个都是 4 种不同的颜色。那是我可以使用一些帮助的地方。
下图显示了我想要的(每个“选项”的不同颜色):
忽略“颜色”变化。只需要修改“Tab”变体。
目前,四个单选选项中的每个选项的变体名称都是“红色”,我希望每个选项都有不同的颜色。
为了实现这一点,我必须在我的代码中进行哪些更改?
谢谢