1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

fix for checkCustomFile

This commit is contained in:
Pavel 2020-07-20 12:31:58 +03:00
parent 6194589dee
commit 9a0c7bf1a0

View file

@ -134,13 +134,18 @@ if (!class_exists( 'WC_Integration_Retailcrm')) :
*/
public static function checkCustomFile($file)
{
$wooPath = WP_PLUGIN_DIR . '/woo-retailcrm/' . $file;
$withoutInclude = WP_CONTENT_DIR . '/retailcrm-custom/' . str_replace('include/', '', $file);
if (file_exists($withoutInclude)) {
return $withoutInclude;
}
return WP_PLUGIN_DIR . '/woo-retailcrm/' . $file;
if (file_exists($wooPath)) {
return $wooPath;
}
return dirname(__FILE__) . '/' . $file;
}
/**