When i add links in article when they are clicked on they open in new page, how can i get these to open in same window as i have articles linking each other and after time i have 50 pages opened, how to stop this please would be awesome for me
That is a Joomla programming option. It's in the link set-up in the joomla menu definitions. If you had your forum open into a new window, probably that is carrying over would be my guess.
Quote by Unknown:That is a Joomla programming option. It's in the link set-up in the joomla menu definitions. If you had your forum open into a new window, probably that is carrying over would be my guess.
ok i dont mean the menus i mean when ya post like a link within post. that refers to another forum post it always opens in new link and is annoying?? how i fix this as if i add [url][/url] to anything once published always opens in new screen
Change the 'url' as following in the com_joobb/system/joobbengine.php (line 148 )
Demo: http://vatlieu.us/forum/topic/10-discovery-keyword-trend-in-each-country-or-all-over-the-world-google-trends-for-keyword-research-.html
Code
case 'url':
$host = str_replace('http://','',JURI::base());
$host = str_replace('/','',$host);
$url = $argument ? $argument : $innerString;
$pos = strpos($url, $host);
if ($pos > 0) $target = ''; else $target = ' target="_blank"';
$replacement = '' . $innerString . '';
break;
[quote]Change the 'url' as following in the com_joobb/system/joobbengine.php (line 148 )
Demo: http://vatlieu.us/forum/topic/10-discovery-keyword-trend-in-each-country-or-all-over-the-world-google-trends-for-keyword-research-.html
Code
case 'url':
$host = str_replace('http://','',JURI::base());
$host = str_replace('/','',$host);
$url = $argument ? $argument : $innerString;
$pos = strpos($url, $host);
if ($pos > 0) $target = ''; else $target = ' target="_blank"';
$replacement = '' . $innerString . '';
break;