XF 2.0 Open in new tab "go to content" in reports by default

Sunka

Well-known member
Licensed customer
How to open by default in new tab when click on Go To Content button in Reports?
It is better that open in new tab so Staff can look reported content and have report open in another tab
 
In report_view find
Code:
<xf:button href="{$report.link}">{{ phrase('go_to_content') }}</xf:button>
add target="_blank" to xf:button
 
In report_view find
Code:
<xf:button href="{$report.link}">{{ phrase('go_to_content') }}</xf:button>
add target="_blank" to xf:button
Thanks

Code:
<xf:button href="{$report.link}" target="_blank">{{ phrase('go_to_content') }}</xf:button>
 
Back
Top Bottom