Skip to content

Instantly share code, notes, and snippets.

@infowprobo
Last active August 6, 2023 12:01
Show Gist options
  • Save infowprobo/4134066c955aaf5e1596de46ba8200c3 to your computer and use it in GitHub Desktop.
Save infowprobo/4134066c955aaf5e1596de46ba8200c3 to your computer and use it in GitHub Desktop.
change the log path in CryptoCart-Lite and in CryptoCartPro plugin
<?php
add_filter( 'wprobo_ccp_functions_add_log_path', 'my_custom_log_path' );
function my_custom_log_path( $log_path ) {
$log_path = '/my/custom/path';
return $log_path;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment