Hi all,
I am trying to use the AllVideos plugin with Lyften Bloggie. It works well when you view the individual blog page but in the intro text it only shows the code and not the video itself, like this {youtube}5eBT6OSr1TI{/youtube}
Is there anything that will cause that? In the settings->content I have set strip objects at "leave" and it still does it.
Any Ideas?
Many thanks!
Lyften Bloggie - Using AllVideos with Lyften Bloggie - ...
Announcement:
LyftenBloggie Documentation
In the file
/components/com_lyftenbloggie/models/lyftenbloggie.php
Adds this 3 lines
// Process the prepare content plugins
JPluginHelper::importPlugin('content');
$results = $dispatcher->trigger('onPrepareContent', array (& $row, &$params, $this->getState('limitstart')));
Put that in te line 470 just before of this lines
// Handle display events
$row->event = new stdClass();
$results = $dispatcher->trigger('onAfterDisplayTitle', array ($row, &$params, $this->getState('limitstart')));
$row->event->afterDisplayTitle = trim(implode("\n", $results));
Greetings
Bolilloman
/components/com_lyftenbloggie/models/lyftenbloggie.php
Adds this 3 lines
// Process the prepare content plugins
JPluginHelper::importPlugin('content');
$results = $dispatcher->trigger('onPrepareContent', array (& $row, &$params, $this->getState('limitstart')));
Put that in te line 470 just before of this lines
// Handle display events
$row->event = new stdClass();
$results = $dispatcher->trigger('onAfterDisplayTitle', array ($row, &$params, $this->getState('limitstart')));
$row->event->afterDisplayTitle = trim(implode("\n", $results));
Greetings
Bolilloman
|
|

