So fügen Sie den Variationsbestandsstatus zum WooCommerce-Produktvariations-Dropdown hinzu
Problem:
WooCommerce zeigt den Lagerstatus für einzelne Produktvarianten nicht in der Dropdown-Liste an. Dies kann es für Kunden schwierig machen, zu bestimmen, welche Variationen verfügbar sind.
Lösung:
Um den Variationsbestandsstatus zur Dropdown-Liste hinzuzufügen, können Sie die Funktion wc_dropdown_variation_attribute_options in ändern Ihre WooCommerce-Installation. Diese Funktion generiert den HTML-Code, der im Dropdown-Menü angezeigt wird.
Code:
<code class="php">add_filter( 'woocommerce_dropdown_variation_attribute_options_html', 'show_stock_status_in_dropdown', 10, 2 ); function show_stock_status_in_dropdown( $html, $args ) { // Get the product and attribute. $product = $args['product']; $attribute = $args['attribute']; // Get the variations for the product. $variations = $product->get_available_variations(); // Loop through the variations and get the stock status for each one. foreach ( $variations as $variation ) { // Get the stock status. $stock_status = $variation['is_in_stock'] ? 'In Stock' : 'Out of Stock'; // Append the stock status to the HTML. $html .= '<option value="' . esc_attr( $variation['variation_id'] ) . '" ' . selected( $args['selected'], $variation['variation_id'], false ) . '>' . esc_html( apply_filters( 'woocommerce_variation_option_name', $variation['attributes'][ $attribute ] ) ) . ' - (' . esc_html( $stock_status ) . ')</option>'; } return $html; }</code>
Erklärung:
Das obige ist der detaillierte Inhalt vonWie zeige ich den Lagerstatus für Produktvarianten im WooCommerce-Dropdown an?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!