plugin-icon

Trusted Shops Easy Integration für WooCommerce

Mit der Trusted Shops Easy Integration integrieren Sie das Gütesiegel, den Käuferschutz und authentische Service- und Produktbewertungen schnell und einfach in Ihren WooCommerce Shop
Bewertungen
5
Zuletzt aktualisiert
April 9, 2024
Version
2.0.2
Aktive Installationen
6K
Trusted Shops Easy Integration für WooCommerce

Mehr als 30.000 Unternehmen in ganz Europa nutzen das Trusted Shops Gütesiegel, den Käuferschutz und die authentischen Bewertungen. für mehr Traffic, höheren Umsatz und bessere Konversionsraten.

Damit Sie Besucherinnen und Besucher schnell und einfach von der Vertrauenswürdigkeit Ihres Online-Shops überzeugen können, gibt es die Trusted Shops Easy Integration. Die simple Installation garantiert eine Produktnutzung in nur 5 Minuten und erfordert in der Regel keine bis wenige technische Vorkenntnisse. Mit unserem Toolkit sind Sie technisch immer auf dem neuesten Stand und haben keinen zusätzlichen Wartungsaufwand.

Ihr Vorteil: Mit nur wenigen Klicks sehen Besucher*innen Ihres Online-Shops Vertrauenselemente wie das Trustbadge oder andere On-Site Widgets, können vom Käuferschutz profitieren und werden nach der Bestellung automatisch um Feedback gebeten.

Die Funktionen im Überblick:

  • Trustbadge anzeigen, Käuferschutz integrieren & Shopbewertungen sammeln
  • Präsentieren Sie Ihre gesammelten Bewertungen auf ansprechende und verkaufsfördernde Weise
  • Produktbewertungen sammeln & anzeigen
  • Multishops innerhalb desselben Plugins konfigurieren

Hinweis: Um das Plugin Trusted Shops Easy Integration nutzen zu können, benötigen Sie eine bestehende Trusted Shops Mitgliedschaft. Weitere Informationen zu unseren Produkten und den Vorteilen von Trusted Shops erhalten Sie auf unserer webseite oder telefonisch unter +49 221 775 36 58.

Overriding templates

Templates may be overridden in a (child-) theme. Overriding the templates/widgets/product-widget.php template in your theme by placing the original file in the following directory: my-child-theme/woocommerce/widgets/product-widget.php.

Product attributes

Brand

WooCommerce does by default not provide a global brand attribute/setting for products. The Package::get_product_brand() method determines the brand for a certain product. By default, the logic searches for an attribute stored within the product data matching the keyword Brand (or a translated version of it). One might easily adjust the brand attribute name by using the filter ts_easy_integration_product_brand_attribute_name. E.g.:

`php

add_filter( ‚ts_easy_integration_product_brand_attribute_name‘, function( $attribute_name, $product ) { // Maybe adjust the $attribute_name based on the WC_Product $product return $attribute_name; }, 10, 2 ); `

Additionally the filter ts_easy_integration_product_brand is provided which allows filtering the actual brand per product.

`php

add_filter( ‚ts_easy_integration_product_brand‘, function( $brand, $product ) { // Maybe adjust the $brand based on the WC_Product $product return $brand; }, 10, 2 ); `

GTIN, MPN, SKU

The plugin uses product identifiers, which might not be provided by the Woo core (e.g. GTIN, MPN) for widgets, order exports and the Trustcard. GTIN and MPN fields are provided through the WooCommerce edit product panel and stored as meta data, using the meta_key _ts_gtin and _ts_mpn.

Similar to the brand attribute, Package::get_product_gtin(), Package::get_product_mpn() and Package::get_product_sku() are used to retrieve the data. Filters exist to adjust the attributes:

  • ts_easy_integration_product_gtin
  • ts_easy_integration_product_mpn
  • ts_easy_integration_product_sku

Example filter-usage to adjust the GTIN:

`php

add_filter( ‚ts_easy_integration_product_gtin‘, function( $gtin, $product ) { // Maybe adjust the $gtin based on the WC_Product $product return $gtin; }, 10, 2 ); `

Technical Insights

More technical insights in the Github Repository readme.md

Minimale Anforderungen

  • WordPress 4.9 oder neuer
  • WooCommerce 3.9 (newest version recommended)
  • PHP Version 5.6 oder neuer
Kostenlosmit dem Creator-Tarif
Mit deiner Installation stimmst du den Geschäftsbedingungen von WordPress.com sowie den Bedingungen für Drittanbieter-Plugins zu.
Aktive Installationen
6K
Getestet bis
6.5.5
Dieses Plugin steht zum Download zur Verfügung, um in deiner selbst gehosteten WordPress-Installation verwendet zu werden.