Tran Dinh Khanh
Tran Dinh Khanh

Reputation: 115

Magento - Add target to new link on toplinks

I add new link to top links using

<block type="page/template_links" name="top.links" as="topLinks">
      <action method="addLink" translate="label title">
           <label>Blog</label>
           <url>/blog</url>
           <title>Blog</title>
           <prepare/>
           <urlParams/>
           <position>1</position>
      </action>
</block>

It works properly. I want to add target="_blank" to this link.

Is there any way to do this?

Thank you.

Upvotes: 1

Views: 1495

Answers (1)

Michael Leiss
Michael Leiss

Reputation: 5670

<block type="page/template_links" name="top.links" as="topLinks">
      <action method="addLink" translate="label title">
           <label>Blog</label>
           <url>/blog</url>
           <title>Blog</title>
           <prepare/>
           <urlParams/>
           <position>1</position>
           <aParams>
                    <target>_blank</target>
           </aParams>
      </action>
</block>

Your welcome! Feel free to have a look at the addLink() method at any time!

Upvotes: 1

Related Questions