Hi @frengo70,
is it possible to exclude the import of wp-bakery shortcodes from other builders in order to import only the real content?
You can use a custom PHP function to strip the shortcodes from the content import element: https://www.wpallimport.com/documentation/developers/custom-code/inline-php/. Here is an example snippet that you can modify as needed:
// Remove shortcodes from data/content/string
function my_remove_shortcodes( $data ) {
$pattern = '#\[[^\]]+\]#';
preg_match_all( $pattern, $data, $matches );
foreach ( $matches as $key => $match ) {
$data = str_replace( $match, '', $data );
}
return $data;
}