Comments 2Stephane031 started the conversationMay 27, 2020 at 6:45amHi Is it possible to open attachements in new tab ? Each time you open a document you have to reload the calendar and reopen the event to open the others attachements. Maybe add an option in general settings ?Regards 877Zhivko repliedMay 27, 2020 at 3:52pmI don't know why we haven't done this by default. I'll make this change in the next update.Meanwhile you could do it by opening file:stachethemes_event_calendar\view\front\tabs\intro.php lines 109 and 114add target="BLANK" to both <a> tags. <ul class="stec-layout-event-inner-intro-attachments-list"> <li class="stec-layout-event-inner-intro-attachment stec-layout-event-inner-intro-attachment-template"> <div> <p class="stec-layout-event-inner-intro-attachment-title stec-layout-event-title2-fontandcolor"><a target="BLANK" href="#stec_replace_url">stec_replace_filename</a></p> <p class="stec-layout-event-inner-intro-attachment-desc stec-layout-event-text-fontandcolor">stec_replace_desc</p> </div> <div> <a target="BLANK" href="#stec_replace_url" class="stec-layout-event-title2-fontandcolor"><?php esc_html_e('Download', 'stec'); ?></a> <p class="stec-layout-event-inner-intro-attachment-size stec-layout-event-text-fontandcolor">stec_replace_size</p> </div> </li> </ul> Stachethemes Developer1 Like 2Stephane031 repliedMay 27, 2020 at 6:43pmtarget="_blank" you mean ? 2Stephane031 repliedMay 27, 2020 at 6:51pmWorking with target="_blank" Thx a lot again for the support ! Sign in to reply ...
Hi
Is it possible to open attachements in new tab ?
Each time you open a document you have to reload the calendar and reopen the event to open the others attachements.
Maybe add an option in general settings ?
Regards
I don't know why we haven't done this by default. I'll make this change in the next update.
Meanwhile you could do it by opening file:
stachethemes_event_calendar\view\front\tabs\intro.php lines 109 and 114
add target="BLANK" to both <a> tags.
Stachethemes Developer
target="_blank" you mean ?
Working with target="_blank"
Thx a lot again for the support !