Plugin Directory

Changeset 3397529


Ignore:
Timestamp:
11/17/2025 07:08:45 PM (5 months ago)
Author:
ujimoto
Message:

1.0.5 new activity log

Location:
activity-track/trunk
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • activity-track/trunk/activities/types.php

    r3294303 r3397529  
    8080        'sidebar' => __('Sidebar Edit', 'activity-track'),
    8181        'deletion' => __('Widget Deletion', 'activity-track'),
     82    ],
     83    'woocommerce' => [
     84        'new_order' => __('WooCommerce New Order', 'activity-track'),
     85        'status_pending' => __('WooCommerce Order Pending', 'activity-track'),
     86        'status_processing' => __('WooCommerce Order Processing', 'activity-track'),
     87        'status_completed' => __('WooCommerce Order Completed', 'activity-track'),
     88        'status_on_hold' => __('WooCommerce Order On Hold', 'activity-track'),
     89        'status_cancelled' => __('WooCommerce Order Cancelled', 'activity-track'),
     90        'status_refunded' => __('WooCommerce Order Refunded', 'activity-track'),
     91        'status_failed' => __('WooCommerce Order Failed', 'activity-track'),
     92        'refund' => __('WooCommerce Refund Created', 'activity-track'),
    8293    ]
    8394]);
  • activity-track/trunk/activity-track.php

    r3384228 r3397529  
    44 * Plugin URI: https://activitytrack.ai/
    55 * Description: AI - powered insights to track and monitor every user activity on your WordPress site with real-time notifications and comprehensive logging.
    6  * Version: 1.0.4
     6 * Version: 1.0.5
    77 * Author: ujimoto
    88 * Author URI: https://activitytrack.ai
  • activity-track/trunk/assets/admin/css/atk.custom.css

    r3294303 r3397529  
    1818.wp-list-table .column-action_type  { width: 25% !important; }
    1919.wp-list-table .column-user_ip_address { width: 150px!important; }
    20 .wp-list-table .column-action { width: 100px!important; }
     20.wp-list-table .column-action { width: 120px!important; }
    2121.wp-list-table .column-action_url   { width: 132px!important; }
    2222.wp-list-table .column-logs_ai   { width: 148px!important; }
  • activity-track/trunk/includes/class-activity-table.php

    r3354247 r3397529  
    181181                    '/\bApi\b/i',
    182182                    '/\bOptions\b/i',
     183                    '/\bWooCommerce\b/i'
    183184                );
    184185
     
    197198                    '<span class="'.$class_data.atk_activity_color( 'Email' ).'">Email</span>',
    198199                    '<span class="'.$class_data.atk_activity_color( 'Api' ).'">Api</span>',
    199                     '<span class="'.$class_data.atk_activity_color( 'Options' ).'">Options</span>'
     200                    '<span class="'.$class_data.atk_activity_color( 'Options' ).'">Options</span>',
     201                    '<span class="'.$class_data.atk_activity_color( 'WooCommerce' ).'">WooCommerce</span>'
    200202                );
    201203
  • activity-track/trunk/includes/formatting.php

    r3294303 r3397529  
    6565            return 'bg-gray-50 text-gray-500 border border-gray-200 text-xs font-normal px-2.5 py-0.5 rounded whitespace-nowrap';
    6666
     67        case 'woocommerce':
     68            return 'bg-indigo-50 text-indigo-500 border border-indigo-200 text-xs font-normal px-2.5 py-0.5 rounded whitespace-nowrap';
     69
     70
    6771    }
    6872}
  • activity-track/trunk/readme.txt

    r3384228 r3397529  
    55Tested up to: 6.8
    66Requires PHP: 8.0
    7 Stable tag: 1.0.4
     7Stable tag: 1.0.5
    88License: GPLv2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    168168== Changelog ==
    169169
     170= 1.0.5 =
     171* Added 'Options' and 'WooCommerce' activity types for better tracking.
     172* Improved activity log formatting for new activity types.
     173
    170174= 1.0.4 =
    171175* Fixed UI issue in settings.
Note: See TracChangeset for help on using the changeset viewer.