vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   Modification Requests/Questions (Unpaid) (https://vborg.vbsupport.ru/forumdisplay.php?f=112)
-   -   external links target=_blank, internal links target=_top? (https://vborg.vbsupport.ru/showthread.php?t=33753)

boatdesign 01-03-2002 03:00 AM

The default behavior in vBulletin is that when someone posts a URL vBulletin converts it to a clickable link and adds target=_blank. This is great for when people post links to other websites, etc. so that my forum stays open in the background.

But when people post internal links to other threads, it can get annoying for them to open in a new window.

Is there any way I could create an "if else" logic that would:
-add target="_blank" when creating autolinks to any external url
-except add target="_top" when creating autolinks to mydomain.com/forum threads?

(I guess the if else logic would actually work the other way around, if the URL=myurl, vBulletin would add target="_top", else it would add "target="_blank".

How would I do this exactly?

Admin 01-03-2002 10:06 AM

I'll see what I can do, shouldn't be too hard.

btw, you need to go to this page and enter your username, to show you are licensed. (you will need to use your customer number and password to access that page)
This will give you access to post in this forum. :)

Admin 01-03-2002 10:33 AM

Ok, try this.
In functions.php replace this:
Code:

  return "<a href=\"$righturl\" target=\"_blank\">".str_replace('\"', '"', $hyperlink)."</a>";
with this:
Code:

  return "<a href=\"$righturl\" target=\"".iif(strstr($righturl,"vbulletin.org"),"_top","_blank")."\">".str_replace('\"', '"', $hyperlink)."</a>";
change vbulletin.org to your own site domain (without www).

Remi 01-03-2002 11:31 PM

FireFly

I knew this might sound strang but I need this finction, so please help if you can


How can I chnge the target domain, for example to replace any vbulletin.org to vbulletin.com in the link

It will be even better if I could use $bburl so when I change it in the controle panel all the old links get updated :D

Please if this does not make sence, just ignore it :D

boatdesign 01-04-2002 12:35 AM

Thanks FireFly,

But I replaced the text exactly as you have it above (changing only vbulletin.org to boatdesign.net) and it didn't work - still all links open in a new window. (I applied the change, it didn't work, I reverted to the old version, tried making the change again to be sure, all links still were to a new window, so I reverted to the old functions.php for now.)

ayasystems 10-27-2008 01:01 PM

In 3.7 version

class_bbcode.php

replace
Code:

return "<a href=\"$rightlink\" target=\"_blank\">$text</a>";
WITH
Code:

return "<a href=\"$rightlink\" target=\"".iif(strstr($rightlink,"YOURDOMAIN.COM"),"_top","_blank")."\">$text</a>";
THANKS!

jeremyalyea 01-10-2009 05:50 PM

This thread could help a lot of people. I searched high and low for it and finally found it. Thank you ayasyystems!

Trek 01-21-2009 08:09 PM

I tried this and it works for external links, but sometimes replaces the text linked to with "internal linking thread" and then just links back to the same thread it's written in. Instead of going to the URL it should.

I reverted back to the vB default and the links work correctly again.

This was on vB 3.8 BTW.

Omega.Rav 04-01-2009 12:35 AM

for vBulletin 3.8.x users: I replaced target "_top" with "_self" and seems to work fine so far :)

Code:

return "<a href=\"$rightlink\" target=\"".iif(strstr($rightlink,"YOURDOMAIN.COM"),"_self","_blank")."\">$text</a>";

dacho 09-18-2009 07:57 AM

It's work fine.... but it's not working in the signature links :(
do you have any idea ????


All times are GMT. The time now is 05:52 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01019 seconds
  • Memory Usage 1,737KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (5)bbcode_code_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (1)pagenav_pagelink
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete