Add catalog sync trigger, metrics, and shipping label actions to integrations.
Deploy Ladill Woo Manager / deploy (push) Successful in 1m5s

Surfaces actionable controls in Ladill instead of status-only cards: sync catalogs via the plugin proxy, show channel metrics, and link to orders/labels for fulfillment.

Co-authored-by: Cursor <cursoragent@cursor.com>
This commit is contained in:
isaacclad
2026-07-08 11:28:42 +00:00
co-authored by Cursor
parent 1e97f129e9
commit 644c3d9cde
7 changed files with 305 additions and 2 deletions
+14
View File
@@ -7,6 +7,8 @@ return [
'category' => 'Fulfillment',
'install_url' => null,
'docs_url' => 'https://woocommerce.com/document/setting-up-shipping-zones/',
'supports_metrics' => true,
'supports_label_actions' => true,
],
'google' => [
'name' => 'Google for WooCommerce',
@@ -14,6 +16,8 @@ return [
'category' => 'Marketing',
'install_url' => 'https://wordpress.org/plugins/google-listings-and-ads/',
'docs_url' => 'https://woocommerce.com/document/google-for-woocommerce/',
'supports_catalog_sync' => true,
'supports_metrics' => true,
],
'pinterest' => [
'name' => 'Pinterest for WooCommerce',
@@ -21,6 +25,8 @@ return [
'category' => 'Marketing',
'install_url' => 'https://wordpress.org/plugins/pinterest-for-woocommerce/',
'docs_url' => 'https://woocommerce.com/document/pinterest-for-woocommerce/',
'supports_catalog_sync' => true,
'supports_metrics' => true,
],
'snapchat' => [
'name' => 'Snapchat for WooCommerce',
@@ -28,6 +34,8 @@ return [
'category' => 'Marketing',
'install_url' => 'https://wordpress.org/plugins/snapchat-for-woocommerce/',
'docs_url' => 'https://businesshelp.snapchat.com/s/article/woocommerce',
'supports_catalog_sync' => true,
'supports_metrics' => true,
],
'tiktok' => [
'name' => 'TikTok for WooCommerce',
@@ -35,6 +43,8 @@ return [
'category' => 'Marketing',
'install_url' => 'https://wordpress.org/plugins/tiktok-for-business/',
'docs_url' => 'https://woocommerce.com/document/tiktok-for-woocommerce/',
'supports_catalog_sync' => true,
'supports_metrics' => true,
],
'reddit' => [
'name' => 'Reddit for WooCommerce',
@@ -42,6 +52,8 @@ return [
'category' => 'Marketing',
'install_url' => 'https://wordpress.org/plugins/reddit-for-woocommerce/',
'docs_url' => 'https://woocommerce.com/document/reddit-for-woocommerce/',
'supports_catalog_sync' => true,
'supports_metrics' => true,
],
'facebook' => [
'name' => 'Meta for WooCommerce',
@@ -49,5 +61,7 @@ return [
'category' => 'Marketing',
'install_url' => 'https://wordpress.org/plugins/facebook-for-woocommerce/',
'docs_url' => 'https://woocommerce.com/document/facebook-for-woocommerce/',
'supports_catalog_sync' => true,
'supports_metrics' => true,
],
];