![]() |
Please help. Need to parse bbcode in a user profile field and pass it to a template.
I posted a few days ago about this, but a member told me about user profile fields. Very helpful. I've managed to get the profile field to show in the template that I want (member info), however, when I add BBcode or html to the profile field, vbulletin just shows the code in the browser and doesn't parse it.
I know the dangers of html in vbulletin. I'm just trying things to see what works and what doesn't. So what I need to do is this... I need to be able to show my profile field in the template but have it be parsed. I figure a plugin is needed, but I can't seem to get the code to work. I've read mod about parsing bbcode. Code:
require_once(DIR . '/includes/class_bbcode.php'); I know the template, plugin, and vbulletin "all become one" after the server works, but I can't grasp the concept well. Please help. |
I wrote a mod where I needed to process the bbcode (View all your social group messages) and I copied/modified a function to parse the bbcode:
PHP Code:
PHP Code:
|
Ok I tried to do what you said. I've got a new profile field (field65) that I've managed to display once on my page using an eval statement, but when I try the following code, I get nothing. I've got my variable $mypage inserted into the MEMBERINFO template. I've been playing with this for about an hour now. I must be off to work. Any ideas?
Code:
function process_message_preview($message) |
That is not how you eval a template. Take a look in a page like member.php and you'll see these last lines:
PHP Code:
|
I got it working! Awesome. Now all I have to do is create a bunch of bbcode tags for html elements like table td tr etc!
heres what I ended up with. Code:
function process_message_preview($message) |
Great! :up:
|
I had posted something saying I was going to go look at class_bbcode.php. I did, and have changed my code to the following...
Code:
function process_message_preview($message) Here is my profile field code. PHP Code:
|
<table> is html not bbcode. You would have to parse it for html otherwise it will treat the < and > as text characters and turn them into < and $gt; in the page source.
|
Risking posting before googling, is there an HTML parse function in vbulletin?
|
Probably. You can look in the API for one (link under Quick Links)
|
Ok that was helpful. I've been looking for the msdn of vbulletin, but I have another question...
If I put some html in a php variable (like $myvar = "<TABLE> STUFF </TABLE>;), then ask it to show on a custom template, it still strips out the chars. Do I need to put a function of some sort on the template itself to allow it to be treated as code and not < $gt chars? Here is a pseudo of what i'm doing... PLUGIN in global_start: PHP Code:
Code:
$myvar EDIT: Can I use (taken from the api) string unhtmlspecialchars (string $text, [boolean $doUniCode = false]) in a template? |
You cannot use functions in a template. You may use them in a plugin and then use the result from the plugin in the template.
|
So how do I keep a template from stripping the html out of a php variable when I "eval" it into a template?
|
I don't know exactly cuz I've never looked into it. You can take a look at what vb does in the code when you allow html in a forum. It has to parse the message text differently when html is allowed, so go see how they do it with that option enabled.
|
And here it is, working just like it should. Profile fields as webpages!
PHP Code:
|
I'm trying to get certain custom user fields to parse, on postbit_legacy.
I did this plugin in member_complete, but it's still not working. what am I doing wrong? Quote:
|
All times are GMT. The time now is 09:25 PM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|