How to open social links in Edwiser RemUI footer in a new tab
Navigate to this file - remui/templates/ footer.mustache
Find - {{# social.****** }} on line number 81 Here find this tag
<a href="{{
Now adding extra attribute target="_blank" will open these links in a new tab.
Make following changes to each <a> tag like shown below:
<a target="_blank" href="{{
Note: Make sure to change the same for all social.****** tags