That’s the ticket @kommTrotz2011! Thank you!!
Let me clarify a bit for anyone not savvy in code…
-Open the file ‘builder.php’. It is located in the following folder:
wp-content/themes/dante/swift-framework/page-builder/builder/lib/builder.php
-Lines 42 & 44 of builder.php should read as below.
$this->postTypes = $pt_array ? $pt_array : array('page', 'post', 'portfolio', 'product', 'team', 'jobs', 'ajde_events', 'example_slug',);
} else {
$this->postTypes = $pt_array ? $pt_array : array('page', 'post', 'portfolio', 'team', 'jobs', 'ajde_events', 'example_slug');
-Replace “example_slug” with the slug of your custom post type into those lines. You should have defined the slug when creating the custom post type.
Voila!! …for now.