Changeset 3102566
- Timestamp:
- 06/14/2024 05:38:19 AM (22 months ago)
- Location:
- minicrm-woocommerce-sync/trunk
- Files:
-
- 5 edited
-
languages/minicrm-woocommerce-sync.pot (modified) (1 diff)
-
lib/Feed.php (modified) (2 diffs)
-
lib/Integration.php (modified) (1 diff)
-
minicrm-woocommerce-sync.php (modified) (1 diff)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
minicrm-woocommerce-sync/trunk/languages/minicrm-woocommerce-sync.pot
r3009379 r3102566 4 4 "Project-Id-Version: MiniCRM " 5 5 "WooCommerce Sync plugin " 6 "v1.5.2 7\n"6 "v1.5.28\n" 7 7 "POT-Creation-Date: 2022-05-30 " 8 8 "22:22+0200\n" -
minicrm-woocommerce-sync/trunk/lib/Feed.php
r3009379 r3102566 133 133 throw new \Exception ('Missing option "folder_name"'); 134 134 } 135 136 // Sync product descriptions? 137 $sync_product_desc = Integration::getOption ('sync_product_desc') === 'yes'; 135 138 136 139 // Get locale … … 500 503 if ($itemProduct instanceof \WC_Product) { 501 504 $sku = $itemProduct->get_sku (); 502 $productDescription = substr($itemProduct->get_description(), 0, 1024); 505 if ($sync_product_desc) { 506 $productDescription = $itemProduct->get_description (); 507 $productDescription = substr ($productDescription, 0, 1024); 508 } 503 509 } 504 510 break; -
minicrm-woocommerce-sync/trunk/lib/Integration.php
r2849279 r3102566 254 254 'title' => __('Folder name', 'minicrm-woocommerce-sync'), 255 255 'type' => 'text', 256 ], 257 'sync_product_desc' => [ 258 'default' => 'yes', 259 'title' => __( 260 'Sync product descriptions', 261 'minicrm-woocommerce-sync' 262 ), 263 'type' => 'checkbox', 256 264 ], 257 265 'debug' => [ -
minicrm-woocommerce-sync/trunk/minicrm-woocommerce-sync.php
r3009379 r3102566 10 10 * Requires PHP: 8.0 11 11 * Text Domain: minicrm-woocommerce-sync 12 * Version: 1.5.2 712 * Version: 1.5.28 13 13 * WC requires at least: 4.0.0 14 14 * WC tested up to: 7.2 -
minicrm-woocommerce-sync/trunk/readme.txt
r3009379 r3102566 5 5 Requires at least: 4.9 6 6 Requires PHP: 8.0 7 Stable tag: 1.5.2 77 Stable tag: 1.5.28 8 8 Tested up to: 6.2 9 9 WC requires at least: 4.0.0
Note: See TracChangeset
for help on using the changeset viewer.