Hello,
I have downloaded the plugin
https://vborg.vbsupport.ru/showthread.php?t=264896 , which gave me an ability to use PHP in BBcode.
For example:
PHP Code:
<?php
$o_style_start = "<b>";
$o_style_end = "</b>";
$o_style = $o_style_start . $value . $o_style_end ;
return "$o_style";
?>
and it works.
But why do i need PHP in BBcode is to make an additional profile field in which the user will decide how the BBcode will look like to him.
So i wanted to insert variables in the replacement field in BBcode section, and put if`s and var values in the Module.
BUT the variables are still don`t have values - i used almost all module locations which my mind thought (bbcode_create, global_start, showthread_start and etc.. )
I thought that "okay, i will put the whole thing in the BBcode replacement section, BUT at that point the field57 is not determined >_< .
Now i just don`t know how to do this.
If someone know - could you please tell me how to "fix" this method.
Or maybe there is other method like to make a module/template which will replace the BBcode looking depending on which options the user has selected in field57 .
For example what i want:
I have a BBcode, which will make the text <b></b>, but if the user has selected the second option in field57 then he will see the text with this BBcode as <i></i> while the users with first option will still see the text as <b></b> .
Thank you in advance, people! :*