I would like my users to be able to view attachments, rather than download them.
I’ve made a change to the codebase (class-fep-attachment.php):
// echo apply_filters( 'fep_filter_attachment_download_link', '<a> $attachment->att_id, 'fep_parent_id' => $attachment->mgs_id ) ) . '" title="' . sprintf( __( 'Download %s', 'front-end-pm' ), esc_attr( $name ) ) . '">' . esc_html( $name ) . '</a>', $attachment->att_id );
echo apply_filters( 'fep_filter_attachment_download_link', '<a target="_" rel="noopener">att_file . '" title="' . sprintf( __( 'View %s', 'front-end-pm' ), esc_attr( $name ) ) . '">' . esc_html( $name ) . '</a>', $attachment->att_id );
However with this change to the codebase, I won’t be able to upgrade.
Let me know how you recommend handling this.
Thanks