Hi,
ok, ich bin also bis hier etwa vorgedrungen:
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
add_action( 'woocommerce_single_product_summary', 'preis_mit_versand', 10 );
function preis_mit_versand() {
global $post, $product;
echo '<div itemprop="offers" itemscope itemtype="https://schema.org/Offer">';
echo '<p class="price">' . $product->get_price_html() . ' VERSANDKOSTEN HIER</p>';
echo '<meta itemprop="price" content="' . $product->get_price() . '" />';
echo '<meta itemprop="priceCurrency" content="' . get_woocommerce_currency() . '" />';
echo '</div>';
}
Ich wollte noch mit: remove_action( 'woocommerce_single_product_summary', 'woocommerce_gzd_template_single_legal_info', 11 );
zun?chst den Hook entfernen, was mir aber nicht gelingt. Wie bekomm ich denn da jetzt die Versandkosten neben den Preis?
Danke!