PDA

View Full Version : vBulletin 4 Request - Turn links into word


tagline
09-17-2016, 04:46 PM
Please help me,

I'd like to automatically convert links published into my forum into a CLICK HERE!, not using bbcodes.

Thanks in advance.

MarkFL
09-17-2016, 04:55 PM
Create a plugin hooked at "postbit_display_complete" with the code:

$post['message'] = preg_replace('/(<a.*?>)(.*?)(<\/a>)/s', '$1' . 'CLICK HERE!' . '$3', $post['message']);

tagline
09-21-2016, 09:13 AM
Thank you Mark! I'll try then I'll post my experience :up:

Stratis
09-21-2016, 01:45 PM
Interesting, but this changes the attach images too, does not show images, only the word CLICK HERE!

Thanks