How to get CubeWP Setting’s field value
global $cwpOptions;
$settings_field = $cwpOptions[‘your_settings_field’];
Make sure $cwpOptions is global before getting value of CubeWP settings.
And then you just need to use setting’s field name to get the value.