[WordPress] 外掛分享: Trusted Shops Easy Integration for WooCommerce

首頁外掛目錄 › Trusted Shops Easy Integration for WooCommerce
WordPress 外掛 Trusted Shops Easy Integration for WooCommerce 的封面圖片
6,000+
安裝啟用
★★★★★
5/5 分(2 則評價)
38 天前
最後更新
問題解決
WordPress 4.9+ PHP 5.6+ v2.0.5 上架:2022-09-04

內容簡介

知名的 Trustmark、Buyer Protection 和 Trusted Shops 的可靠評論,已經代表著超過 20 年的信任。超過 30,000 個歐洲的網路商店使用我們的 Trust 解決方案,來獲得更多流量、更高的銷售量和更好的轉換率。

Trusted Shops Easy Integration 是最簡單、最快速的方式,來讓訪客相信您的網路商店是可信賴的。簡單的安裝保證 5 分鐘即可使用,並且通常不需要先前的技術知識。使用我們的擴充套件,您始終處於技術更新的狀態,而且不需要額外的維護工作。

您的好處:只需幾個點擊,您網路商店的訪客可以看到信任元素,例如 Trustbadge 或其他現場小工具、獲得買家保護,以及在下單後自動要求反饋意見。

所有功能一覽:

顯示 Trustbadge、整合買家保護 & 收集商店評論
以吸引人且促銷視效的方式呈現收集的評論
收集和顯示產品評論
在同一外掛中設定多個商店

請注意:要使用 Trusted Shops Easy Integration 擴充套件,您需要現有的 Trusted Shops 會員資格。您可以在我們的網站上獲得有關 Trusted Shops 產品和好處的更多資訊,或致電:+44 23364 5906。

外掛標籤

開發者團隊

⬇ 下載最新版 (v2.0.5) 或搜尋安裝

① 下載 ZIP → 後台「外掛 › 安裝外掛 › 上傳外掛」
② 後台搜尋「Trusted Shops Easy Integration for WooCommerce」→ 直接安裝(推薦)
📦 歷史版本下載

原文外掛簡介

The well-known Trustmark, the Buyer Protection and the authentic reviews from Trusted Shops have stood for trust for over 20 years. More than 30,000 online shops throughout Europe use our Trust solutions for more traffic, higher sales and better conversion rates.
Trusted Shops Easy Integration is the easiest and fastest way to convince visitors of the trustworthiness of your online shop. The simple installation guarantees product use in just 5 minutes and usually requires little to no prior technical knowledge. With our extension you are always technically up to date and have no additional maintenance effort.
Your benefit: With just a few clicks, visitors to your online shop can see trust elements such as the Trustbadge or other on-site widgets, can benefit from buyer protection and are automatically asked for feedback after placing an order.
All features at a glance:

Show Trustbadge, integrate Buyer Protection & collect shop reviews
Present your collected reviews in an appealing and sales-boosting way
Collect and display Product Reviews
Configure multiple shops within the same plugin

Please note: To use the extension Trusted Shops Easy Integration, you need an existing Trusted Shops membership. You can find out more about the products and benefits of Trusted Shops on our website or by calling: +44 23364 5906
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
Minimal Requirements

WordPress 4.9 or newer
WooCommerce 3.9 (newest version recommended)
PHP Version 5.6 or newer

延伸相關外掛

文章
Filter
Apply Filters
Mastodon