katharina001
Verfasste Forenbeiträge
Ansicht von 3 Antworten – 1 bis 3 (von insgesamt 3)
-
Forum: WooCommerce
Als Antwort auf: Tab „zusätzliche Information“ an anderer Stelle anzeigenIch habs gelöst, es funktioniert aber ich bin nicht ganz sicher ob es sauber gemacht ist. Mit diesem Code in meiner functions.php werden die Infos an der gewünschten Stelle angezeigt.
// Entfernt Tab zusätzliche Informationen add_filter( 'woocommerce_product_tabs', 'woo_remove_product_tabs', 98 ); function woo_remove_product_tabs( $tabs ) { unset( $tabs['additional_information'] ); // Remove the additional information tab return $tabs; } // Inhalt aus zusätzliche Information unter Produktbildern add_action( 'woocommerce_after_single_product_summary', 'bbloomer_custom_action', 5 ); function bbloomer_custom_action() { if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } global $product; do_action( 'woocommerce_product_additional_information', $product ); }Ich bin gerne für Kritik und andere Vorschläge offen.
Liebe Grüße 🙂
Forum: WooCommerce
Als Antwort auf: Tab „zusätzliche Information“ an anderer Stelle anzeigenHallo Angelika,
sorry für die späte Antwort, ich bin in den letzten Tagen nicht dazugekommen weiterzumachen. Ich werde mir das jetzt am Wochenende genau anschauen und auf jeden Fall Bescheid geben ob das die Lösung ist.
Vielen Dank und einen schönen Tag 🙂
Forum: Plugins
Als Antwort auf: ACF Page Builder Field für Custom Post Type aktivierenSorry, jetzt hab ichs doch gefunden. Unter Einstellungen – Page Builder kann man Post Types auswählen.
Ansicht von 3 Antworten – 1 bis 3 (von insgesamt 3)