I understand the code for opening a new window something like "target_blank" but since this is written in PHP because its a theme option I cannot seem to get this working.

I have tired disabling the link validator and then attaching the target code behind the link leaving out the last "

Comments

israelshmueli’s picture

It seems good idea to add "Open in new window" as an option in theme settings.
Until it will be added you can achieve that by editing fontfolio's template.php file.

On line 103 you will find

  $options['html'] = TRUE;

Insert the following Immediately after line 103 (let it be line 104):

  $options['attributes']['target'] = '_blank';

This addition should add target="_blank" to each social link.