/**
  *
  * Get the excerpt for a View when it is duplicated
  *
  * @return string $excerpt
  */
 public static function default_excerpt($excerpt, $post)
 {
     $copy_display = FrmProDisplaysHelper::get_current_view($post);
     if ($copy_display) {
         $excerpt = $copy_display->post_excerpt;
     }
     return $excerpt;
 }