Hi we are using the neighborhood theme in wordpress and we need to override a function from /themes/neighborhood/includes/swift-framework/sf-content-display/sf-post-formats.php
Like on other spots of the theme it would be great to have the function_exists wrapper for all the functions in there. This might also apply to the file sf-post-formats-3.6.php
Example:
if ( !function_exists('sf_get_post_item') ) {
function sf_get_post_item($postID, $blog_type, $show_title = "yes", $show_excerpt = "yes", $show_details = "yes", $excerpt_length = "20", $content_output = "excerpt", $show_read_more = "no") {
...
}
}