XF 1.5 message_user_info, xenforo 1.5.12

vbuser

Active member
No problem just a question. It appears new template refers to data-vocabulary.org but this appears outdated. Link used in template gives 404 error.

Code:
<div class="messageUserInfo" {xen:if $user.user_id, 'itemscope="itemscope" itemtype="http://data-vocabulary.org/Person"'}>
 
This isn't new -- it's been this since 1.0. It is the older system, but it still works. (The schema.org versions are not 100% backwards compatible.)
 
@Mike it's possible...;

Code:
<div class="profilePage" itemscope="itemscope" itemtype="http://data-vocabulary.org/Person">

to

Code:
<div class="profilePage" itemscope="itemscope" itemtype="https://schema.org/Person">

Profile page or message user info, so can we use this new value?

Version: still 1.5
 
I don't know off the top of my head if the schemas are identical. Unless you're seeing problems, I wouldn't recommend changing it, though if you do, please use a structured data testing tool to confirm it's valid.
 
Top Bottom