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;
}'
ご覧のとおり、私が試みていることは機能していません。何が間違っているのか正確にはわかりません。