Zum Inhalt springen
Startseite » Woocommerce Snippets » Zusätzliche Informationen direkt über Warenkorb

Zusätzliche Informationen direkt über Warenkorb

Hier kann man im Warenkorb Hinweise einbelnden.

// Zusätzliche Informationen direkt über Warenkorb

add_action ( 'woocommerce_single_product_summary', 'show_attributes', 25 );
function show_attributes() {
  global $product;
  $product->list_attributes(); 
}