PDA

View Full Version : Help friends - how I make another BBcode to URL


dacho
05-26-2012, 02:02 PM
I want to create more/different BBCODE for URL links
And to give him different parameters than having to BBCODE to URL
For some reason I can not produce BBCODE for this

I try that :

title : MoreUrl
BB Code Tag Name : XXX
Replacement : <a href="{option}" style="border-color:red;border-style:outset;" />{param}</a>
Example : http://www.vbulletin.org

It does not work

Any idea?

kh99
05-26-2012, 02:37 PM
You are using {option} as the href, but your tag includes no option. I think you want something like:
title : MoreUrl
BB Code Tag Name : XXX
Replacement : <a href="{option}" style="border-color:red;border-style:outset;" />{param}</a>
Example : VBulletin.org



or else
title : MoreUrl
BB Code Tag Name : XXX
Replacement : <a href="{param}" style="border-color:red;border-style:outset;" />{param}</a>
Example : http://www.vbulletin.org




or both, if you'd like.

dacho
05-26-2012, 03:04 PM
Thanks
I try it befor and it does not work
but new It's working fine :)