Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1003668

    Hallo Zusammen,

    wir nutzen das Enfold und Enfold Child Theme in diversen Kundenshops.
    Nun möchte ein Kunde, die auf den Produktseiten im Frontend angezeigten “ähnlichen Produkte” ausblenden.
    Funktioniert das über einen Eintrag in den functions.php?
    Die Lösungsansätze die ich über eine Google-Suche gefunden habe, funktionieren leider nicht.

    Ich wäre für einen Tipp sehr dankbar.
    Vielen Dank im Voraus

    M. Popp

    #1003688

    Hey popp1972,

    Ja, bitte füge diesen Code zur child theme functions.php hinzu:

    
    add_action('init', 'avia_remove_related_products', 10); 
    function avia_remove_related_products()
    {
    	remove_action( 'woocommerce_after_single_product_summary','avia_woocommerce_output_related_products', 20);
    }
    

    LG,
    Peter

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.