Consider you want to create a bbcode [myraw] which does nothing. In order to prevent simlies and nested bbcodes rendering, you check the following checkboxes in "Advanced options":
But user mentions will still work inside our custom bbcode but they should not (since we have checked "Disable...
Oh, it is not a bug but a plugin-design error. I didn't think about merging templates when upgrading. I will think of how to secure math configuration from plugin updates. I am sorry for any losses it caused.
Just looked at a picture you attached. You don't need to use \( and \) symbols inside bbcodes!
Instead of \( a \) write a.
Same goes for block math: instead of \[ a^2 + b^2 = c^2 \] just write a^2 + b^2 = c^2.
@Andy.N check CMTV_Math_js template. The delimiters object must have these two lines for bbcodes to work:
"delimiters":
[
{left: "", right: "", display: false},
{left: "", right: "", display: true}
],
Also, obviously, check that bbcodes are active.
I don't know) I suppose everything will be just fine with polls since I do not change any native XF data rather than type_data column in xf_thread table.
Nothing happens with them. The converter only touches "questions only" and "question + threads" nodes.
Generally, you can just create...
Yeah I forgot about XF smilies. I think the only solution here would be creating a custom bbcodes [math] (for display math) and [imath] (for inline) and disabling smilie rendering inside:
I will make a patch soon that adds these two bbcodes.
I see. There are two options:
Go to CMTV_Math_js template and add your own math delimiter to an array of delimiters: {left: "", right: "", display: true}
OR
Add a custom BBCode through you ACP that automatically converts your [tex] bbcode to \[ \] notation.
Confirmed working on XF 2.2!
@FaustVasea I did not test this addon on UIX TH, but I believe you need to go message_macros template, find something that looks like userExtras and place the following code there:
<xf:if is="{{ property('CMTV_Badges_show_in_message') }}">
<xf:css...