Hello,
If someone want to enable ETA without enabling product build or projections (or any combination) it is not possible unless you enable the 3 of them.
I'm not sure if they are close related but for me it seems a bug...
The problem seems in the code "core/columns_api.php" at line 48:
Code: Select all
case 'eta':
if( config_get( 'enable_eta' ) == OFF ) {
continue 2;
}
case 'projection':
if( config_get( 'enable_projection' ) == OFF ) {
continue 2;
}
case 'build':
if( config_get( 'enable_product_build' ) == OFF ) {
continue 2;
}The quick fix without modifying any code is to enable the 3 of them.