Hi
At the moment, there is only one way to achieve this.
If you are using version 1.x (from www.ads-software.com), you can use
add_filter('bsi_text', function($text) {
$text = explode('-', $text);
$text = trim($text[0]);
return $text;
});
If you are using version 2.x (from github) you can do the same thing, but with a different filter name.
add_filter('bsi_image_text', function($text) {
$text = explode('-', $text);
$text = trim($text[0]);
return $text;
});
Please note that the ‘-‘ in this code is not a simple dash, and it might even not be a dash in your website (as it depends on the settings of your website);
you can take this character from the actual title you see now (and can edit) in the BSI interface with a post or page.
It could even be that your website title is in front of the post title, in that case you would want element [1] instead of [0].
Place the code in an mu-plugin and you’re good to go.
Regards,
Remon.