Hi,
A developer should really assist you with the integration, you need to edit this file: /wp-content/themes/dante/swift-framework/page-builder/builder/lib/builder.php
Find this:
if ($enable_pb_product_pages) {
$this->postTypes = $pt_array ? $pt_array : array('page', 'post', 'portfolio', 'product', 'team', 'jobs', 'ajde_events');
} else {
$this->postTypes = $pt_array ? $pt_array : array('page', 'post', 'portfolio', 'team', 'jobs', 'ajde_events');
}
add your CPT slug in each line after 'ajde_events'
, ex: 'ajde_events', 'my_ctp_slug'
Thanks.