Ah, i understand you now. If you are using a page builder it might be different but if you are using our shortcodes/blocks then this code snippet will make that happen:
add_filter('geodir_widget_post_title_output','_my_open_gd_title_new_window',15,6);
function _my_open_gd_title_new_window($output, $title_tag, $instance, $args, $content, $widget ){
return $output ? str_replace('href=','target="blank" href=',$output) : $output;
}
Its a bit more complicated to do this for the images but if you really need that let me know and i will provide a snippet.
Thanks,
Stiofan
P.S. you can install the plugni “code snippets” to add the above code snippet.