/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/

add_action('woocommerce_before_single_product_summary', 'add_custom_short_description', 10);

function add_custom_short_description() {
    if (is_product()) {
        echo '<div class="custom-product-description">';
        echo '<p><strong>Hoogwaardige onderdelen:</strong> Kies de kwaliteit die bij u past.</p>';
        echo '<p><strong>Reparatie:</strong> Vaak binnen 30 minuten klaar.</p>';
        echo '<p><strong>Garantie:</strong> 6 maanden op veel reparaties.</p>';
        echo '</div>';
    }
}
