RSS Links – Open new page in browser

When a customer clicks a link from RSS Feeder I would like the browser to open new window so people do not navigate way from my site.

Can I use the code: target="_blank" in one of the files?

Thanks

Mitch

1 answer

Profile photo of JA Developer 0.00 $tone January 6, 2010
Public

Hi there

For jm lead, please open app\design\frontend\default\jm_leadtemplate\jooml art\jmrss\list.phtml file, find following code section:

Code:

<a href="<?php echo $this->htmlEscape($item['link'])?>">
						    			<?php echo  $item['title']?>
						    		</a>

and change to:

Code:

<a href="<?php echo $this->htmlEscape($item['link'])?>" target="_blank">
						    			<?php echo  $item['title']?>
						    		</a>
#1

This question is now closed

Written By

Comments