Changeset 3248102
- Timestamp:
- 02/27/2025 08:50:31 PM (12 months ago)
- Location:
- sweet-woocommerce
- Files:
-
- 22 added
- 3 edited
-
tags/0.0.14 (added)
-
tags/0.0.14/assets (added)
-
tags/0.0.14/assets/img (added)
-
tags/0.0.14/assets/img/categories.svg (added)
-
tags/0.0.14/assets/img/logo.svg (added)
-
tags/0.0.14/assets/img/orders.svg (added)
-
tags/0.0.14/assets/img/products.svg (added)
-
tags/0.0.14/assets/scripts (added)
-
tags/0.0.14/assets/scripts/main.js (added)
-
tags/0.0.14/assets/styles (added)
-
tags/0.0.14/assets/styles/main.css (added)
-
tags/0.0.14/class (added)
-
tags/0.0.14/class/defs.php (added)
-
tags/0.0.14/class/setup.php (added)
-
tags/0.0.14/core (added)
-
tags/0.0.14/core/log (added)
-
tags/0.0.14/core/log/log.csv (added)
-
tags/0.0.14/core/sweet.php (added)
-
tags/0.0.14/readme.txt (added)
-
tags/0.0.14/sweet-admin-functions.php (added)
-
tags/0.0.14/sweet-tracker-functions.php (added)
-
tags/0.0.14/sweet-woocommerce.php (added)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/sweet-tracker-functions.php (modified) (4 diffs)
-
trunk/sweet-woocommerce.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
sweet-woocommerce/trunk/readme.txt
r3248081 r3248102 4 4 Requires at least: 2.2 5 5 Tested up to: 6.7 6 Stable tag: 0.0.1 36 Stable tag: 0.0.14 7 7 License: GPLv2 or later 8 8 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 72 72 == Changelog == 73 73 74 = 0.0.14 = 75 * Remove logs 76 74 77 = 0.0.13 = 75 78 * Test Wordpress 6.7 -
sweet-woocommerce/trunk/sweet-tracker-functions.php
r3248066 r3248102 97 97 update_post_meta($order_id, $key, 1); 98 98 } else { 99 echo 'Transaction ' . $order_id .' has already been processed.';99 // echo 'Transaction ' . $order_id .' has already been processed.'; 100 100 return; 101 101 } … … 106 106 } else { 107 107 108 echo 'Adding transaction: ' . $order_id;109 echo 'Total price: ' . $order->get_total();108 // echo 'Adding transaction: ' . $order_id; 109 // echo 'Total price: ' . $order->get_total(); 110 110 111 111 ?> … … 136 136 $categoryName = is_null($term) || $term === false ? "" : $term->name; 137 137 138 echo 'Adding item: ' . $product->get_name() . $product->get_sku();139 echo 'Price: ' . $item->get_total();140 echo 'Category: ' . $categoryName;138 // echo 'Adding item: ' . $product->get_name() . $product->get_sku(); 139 // echo 'Price: ' . $item->get_total(); 140 // echo 'Category: ' . $categoryName; 141 141 142 142 ?> … … 160 160 } 161 161 162 echo 'Sending transaction! ' . $order_id;162 // echo 'Sending transaction! ' . $order_id; 163 163 ?> 164 164 <script> -
sweet-woocommerce/trunk/sweet-woocommerce.php
r3248081 r3248102 3 3 * Plugin Name: Sweet Analytics WooCommerce 4 4 * Description: WooCommerce tracking integration with Sweet Analytics 5 * Version: 0.0.1 35 * Version: 0.0.14 6 6 * Author: Sweet Analytics 7 7 * Author URI: https://sweetanalytics.com
Note: See TracChangeset
for help on using the changeset viewer.