2

WooCommerce に問題があり、完売したアイテムの特定のクラス「完売」を返そうとしています。従来のドロップダウンではなく、div を返すプラグインを使用しています。したがって、[S][M][L][ XL ] などを選択できます

したがって、このクラスを追加したい div があります。クリックできないようにスタイリングし、商品が売り切れの場合はクリックすらできないようにします。

これが私がやろうとしていることですが、何も返されないようです。エラーすらありません:

public function is_in_stock() {
        if ( $this->managing_stock() ) :
            if ( ! $this->backorders_allowed() ) :
                if ( $this->get_total_stock() <  1 ) :
                    return false;
                else :
                    if ( $this->stock_status == 'instock' ) return true;
                    return false;
                endif;
            else :
                return true;
            endif;
        endif;
        if ( $this->stock_status == 'instock' ) return true;
        return false;
    }

function is_sold_out () {
         if ($product->is_in_stock()) {
          $soldOutClass = 'in-stock';
         } else {
          $soldOutClass = 'sold-out';
         }  
    }

public function get_output($placeholder = true, $placeholder_src = 'default') {
        global $woocommerce;


        $out = '<div class="select-option swatch-wrapper '.$soldOutStatus .'" data-value="' . $this->term_slug . '" ' . ($this->selected ? 'data-default="true"' : '') . '>';

        if ($this->type == 'photo' || $this->type == 'image') {

            $out .= '<a href="#" style="width:' . $this->width . 'px;height:' . $this->height . 'px;" title="' . $this->term_label . '">';
            $out .= '<img src="' . $this->thumbnail_src . '" alt="Thumbnail" class="wp-post-image swatch-photo' . $this->meta_key() . '" width="' . $this->width . '" height="' . $this->height . '"/>';
            $out .= '</a>';
        } elseif ($this->type == 'color') {
            $out .= '<a href="#" style="text-indent:-9999px;width:' . $this->width . 'px;height:' . $this->height . 'px;background-color:' . $this->color . ';" title="' . $this->term_label . '">' . $this->term_label  . '</a>';
        } elseif ($placeholder) {
            if ($placeholder_src == 'default') {
                $src = $woocommerce->plugin_url() . '/assets/images/placeholder.png';
            } else {
                $src = $placeholder_src;
            }

            $out .= '<a href="#" style="width:' . $this->width . 'px;height:' . $this->height . 'px;" title="' . $this->term_label . '">';
            $out .= '<img src="' . $src . '" alt="Thumbnail" class="wp-post-image swatch-photo' . $this->meta_key() . '" width="' . $this->width . '" height="' . $this->height . '"/>';
            $out .= '</a>';
        } else {
            return '';
        }

        $out .= '</div>';

        return $out;
    }'

ご覧のとおり、私が試みていることは機能していません。何が間違っているのか正確にはわかりません。

4

2 に答える 2

4

テンプレートphpでこの関数を試してください:

function is_out_of_stock() {
    global $post;
    $post_id = $post->ID;
    $stock_status = get_post_meta($post_id, '_stock_status',true) == 'outofstock';
}

そして、次のようなことができます。

<img class="<?php echo is_out_of_stock()? 'outofstock':''; ?>" src="..."></img>
于 2012-10-18T09:03:58.767 に答える
0

テーマのディレクトリにと呼ばれるフォルダを/woocommerce作成し、この中に別のフォルダを作成し/loop、最後add-to-cart.phpにこの中にプラグインからファイルを配置し、17行目を次のように変更します。 ..class="out-of-stock mycustomclasshere"><?php echo apply_filters('out_of_stock_add_to_cart_text',__( 'Out of Stock','woocommerce'));?>..

mycustomclasshereは、明らかに出力をスタイリングする独自のCSSになります。

于 2013-02-18T17:58:32.397 に答える