The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#3
|
|||
|
|||
![]()
Well, I tried it but unfortunately I don't see a way to access the image url without changing the code or creating a plugin. So, I created this plugin using hook location rssposter_parse_rss:
Code:
$handled = array('link', 'description', 'title', 'id', 'guid', 'pubDate', 'date', 'enclosure_link', 'enclosure_href', 'content', 'content:encoded', 'author', 'dc:creator'); if (!in_array($field, $handled)) { $parts = explode(':', $field); if (count($parts) > 1) { $att = array_pop($parts); $f = implode(':', $parts); if (is_string($item[$f][$att])) $handled_value = $item[$f][$att]; } } If you create that plugin, then you should be able to get the image url using {feed:enc:enclosure:resource}. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|