Support for PhpBB3. Post here to get help with any phpBB3 related issue here There is no support here! Only Read Access!
Forum rules
In order the get any support, you will have to do following:
1. Use a describing title!
2. Describe your problem and what happened when the problem occured
3. Tell us what version of phpBB3 you are currently using.
Else your topic may be ignored or locked!
Apologies if this has already been covered or if this is the wrong Forum. Does anyone know of a way to create a custom bbcode without an opening and closing tag? For instance like the stock bullet bbcode:
If you did that, how would your users know when the bbcode ends?
You cant do it with the custom bbcode system. But you can probably hardcode it, that is only if you know how.
Stoker » 15 Jun 2010, 19:31 wrote:If you did that, how would your users know when the bbcode ends?
You cant do it with the custom bbcode system. But you can probably hardcode it, that is only if you know how.
Well they wouldn't really need to know when the bbcode ends. It's really for a custom bbcode I'm making to make html tables. This particular bbcode would be for the </tr> or new row HTML. I'd be a lot nicer to have [newrow] instead of [newrow][/newrow] with nothing between the tags.
From the searching I've done, it looks pretty hard to hard code bbcodes. Oh well, I'll do a little more brainstorming I guess.
like Stoker said you cannot do that with custom bbcodes, have you tried to create a bbcode without a closing tag? you will always get an error. Like you were told previously it would have to be hardcoded withing the template and/or .php files for it to work!
cisco007 » 15 Jun 2010, 23:34 wrote:like Stoker said you cannot do that with custom bbcodes, have you tried to create a bbcode without a closing tag? you will always get an error. Like you were told previously it would have to be hardcoded withing the template and/or .php files for it to work!
Yes, I understood his answer...I was answering his question to me.