<!-- start Simple Custom CSS and JS -->
<script type="text/javascript">
// Retirer les liens "Read More" et "Less" de la description courte des produits WooCommerce
function remove_read_more_less_link() {
remove_action('woocommerce_short_description', 'woocommerce_template_single_excerpt', 20);
}
add_action('woocommerce_single_product_summary', 'remove_read_more_less_link', 1);
</script>
<!-- end Simple Custom CSS and JS -->