Do not sell or share my personal information Skip to content

Add link to logged data

Logging is a crucial part of any WooCommerce extension. It helps you track errors and debug issues. Here’s a code snippet that shows how to add a link to the logs in your extension, making it easy for users to access them.

		// Define the label and description for the logging option
$label = __( 'Enable Logging', 'your-textdomain-here' );
$description = __( 'Enable the logging of errors.', 'your-textdomain-here' );

// Check if the WooCommerce logging directory is defined
if ( defined( 'WC_LOG_DIR' ) ) {
  // Create a URL to the WooCommerce logs
  $log_url = add_query_arg( 'tab', 'logs', add_query_arg( 'page', 'wc-status', admin_url( 'admin.php' ) ) );
  $log_key = 'your-plugin-slug-here-' . sanitize_file_name( wp_hash( 'your-plugin-slug-here' ) ) . '-log';
  $log_url = add_query_arg( 'log_file', $log_key, $log_url );

  // Add a link to the logs to the label
  $label .= ' | ' . sprintf( __( '%1$sView Log%2$s', 'your-textdomain-here' ), '', '' );
}

// Add the logging option to the form fields
$form_fields['wc_yourpluginslug_debug'] = array(
  'title' => __( 'Debug Log', 'your-textdomain-here' ),
  'label' => $label,
  'description' => $description,
  'type' => 'checkbox',
  'default' => 'no'
);

	

With this code, users can easily enable logging and view the logs from the WooCommerce settings page.

Last updated: February 07, 2024