Simple Machines Community Forum

Customizing SMF => SMF Coding Discussion => Topic started by: Random Username on February 08, 2023, 04:48:50 PM

Title: Change ahref html code inside php to open in new window?
Post by: Random Username on February 08, 2023, 04:48:50 PM
Could someone assist, pretty please? Thank you!

<a href="', $scripturl, '?action=shoutbox;sa=likes;u=', $member['id'],'">', $member['shoutbox_likes'], '</a></td>';
Title: Re: Change ahref html code inside php to open in new window?
Post by: DeadMan... on February 08, 2023, 04:57:38 PM
You need to add: target="_blank"
Would look like this:

<a href="', $scripturl, '?action=shoutbox;sa=likes;u=', $member['id'],'" target="_blank">', $member['shoutbox_likes'], '</a></td>';
Title: Re: Change ahref html code inside php to open in new window?
Post by: Random Username on February 08, 2023, 05:00:04 PM
Thank you, Sir!