如何更改woocommerce剪切为产品表列表使用变量名称而不是变量slug

时间:2014-07-17 11:22:48

标签: php wordpress woocommerce

我偶然发现了一个非常酷的woocommerce剪辑,我希望通过将其输入到我的function.php页面中,将其合并到我的网站中。我现在已经做了,但问题在于,woocommerce现在从变量产品中拉出变量slug并在网站的前端显示。

有没有办法可以更改下面的代码,使用赋予变量而不是slug的实际名称?

以下是代码

/*product variations list table*/
function find_valid_variations() {
global $product;

$variations = $product->get_available_variations();
$attributes = $product->get_attributes();
$new_variants = array();

// Loop through all variations
foreach( $variations as $variation ) {

    // Peruse the attributes.

    // 1. If both are explicitly set, this is a valid variation
    // 2. If one is not set, that means any, and we must 'create' the rest.

    $valid = true; // so far
    foreach( $attributes as $slug => $args ) {
        if( array_key_exists("attribute_$slug", $variation['attributes']) && !empty($variation['attributes']["attribute_$slug"]) ) {
            // Exists

        } else {
            // Not exists, create
            $valid = false; // it contains 'anys'
            // loop through all options for the 'ANY' attribute, and add each
            foreach( explode( '|', $attributes[$slug]['value']) as $attribute ) {
                $attribute = trim( $attribute );
                $new_variant = $variation;
                $new_variant['attributes']["attribute_$slug"] = $attribute;
                $new_variants[] = $new_variant;
            }

        }
    }

    // This contains ALL set attributes, and is itself a 'valid' variation.
    if( $valid )
        $new_variants[] = $variation;

}

return $new_variants;}

谢谢你们分享你们的知识。

1 个答案:

答案 0 :(得分:2)

正如我们所知,产品变化slug,我们可以得到如下名称,

参考链接:https://gist.github.com/renegadesk/3967956

请检查代号为80到91的代码。

在这里,我们可以直接提取变体名称。 (第86行),

$ woocommerce-> attribute_label