Verkocht

kalm

Gebruiker
Lid geworden
26 mei 2004
Berichten
825
Beste Helpers , hoe geef je groot en duidelijk aan in woocommerce dat een product verkocht is? Is daar een plugin voor?
 
In je functions.php van een child-template:
PHP:
add_action('woocommerce_single_product_summary', 'custom_out_of_stock_notice', 6);
function custom_out_of_stock_notice() {
    global $product;
    if (!$product->is_in_stock()) {
        echo '<div style="color: white; background: red; padding: 10px; font-size: 20px; font-weight: bold; text-align: center; margin-bottom: 20px;">Let op: VERKOCHT / NIET OP VOORRAAD</div>';
    }
}

Mijn advies is om niet voor elke scheet een plug-in te zoeken. Kijk ook naar mogelijkheden met PHP functies in functions.php.
 
Terug
Bovenaan Onderaan