- Posts: 3
- Thank you received: 0
Kunena 7.0.4 Released
The Kunena team has announce the arrival of Kunena 7.0.4 [K 7.0.4] in stable which is now available for download as a native Joomla extension for J! 5.4.x/6.0.x. This version addresses most of the issues that were discovered in K 6.2 / K 6.3 / K 6.4 and issues discovered during the last development stages of K 7.0
Question Getting All-Video/3rd Party Plugins to work in the forum
17 years 2 months ago #6218
by wwwebguru
I am trying to get the AllVideo plugin to work properly. I just imported hundred's of posts with audio/video and Kunena doesn't seem to allow for the processing of third party plugins.
AllVideo uses special tags, {flv}movie{/flv} similar to other plugins.
I need Kunena to process these tags because there is no way I can go through all the old posts and reconfigure their tags to match Kunena's syntax.
Additionally, other plugins use these types of tags and I need them to work also.
Any suggestions??
Thanks, in advance!
AllVideo uses special tags, {flv}movie{/flv} similar to other plugins.
I need Kunena to process these tags because there is no way I can go through all the old posts and reconfigure their tags to match Kunena's syntax.
Additionally, other plugins use these types of tags and I need them to work also.
Any suggestions??
Thanks, in advance!
Please Log in or Create an account to join the conversation.
17 years 2 months ago #6256
by Matias
Replied by Matias on topic Re:Getting All-Video/3rd Party Plugins to work in the forum
There is some legacy code for mambot support (onPrepareContent) and it's called after all other processing. But it has not been tested for a while.
Which hook do you need?
The code can be found from defaul_ex template:
components/com_kunena/template/default_ex/view.php around line 1054
If you have skills to fix it, I would like to see your changes here in the forum.
Which hook do you need?
The code can be found from defaul_ex template:
components/com_kunena/template/default_ex/view.php around line 1054
If you have skills to fix it, I would like to see your changes here in the forum.
Please Log in or Create an account to join the conversation.
17 years 2 months ago #6261
by kingbt
Nasul is my site.
Replied by kingbt on topic Re:Getting All-Video/3rd Party Plugins to work in the forum
in view.php in the default_ex template replace the code between:
replace with (2 times):
or download the file already modified, from
here
Code:
// Joomla Mambot Support
...
// Finish Joomla Mambot Support
Code:
if ($fbConfig->jmambot)
{
$row = new t();
$row->text = $fb_message_txt;
if(!defined( '_JEXEC' )){
global $_MAMBOTS;
$_MAMBOTS->loadBotGroup('content');
$params = &new mosParameters('');
$results = $_MAMBOTS->trigger( 'onPrepareContent', array( &$row, &$params, 0 ), true );
}
else //viet4777
{
JPluginHelper::importPlugin( 'content' );
$dispatcher =& JDispatcher::getInstance();
$params = & new JParameter('');
$results = $dispatcher->trigger('onPrepareContent', array(&$row,&$params,0));
}
$msg_text = $row->text;
}
Nasul is my site.
Please Log in or Create an account to join the conversation.
17 years 2 months ago #6285
by Matias
Replied by Matias on topic Re:Getting All-Video/3rd Party Plugins to work in the forum
The first instance was never used and I removed it from Kunena 1.0.9. Thank you for the fix!
Please Log in or Create an account to join the conversation.
- Repelzteeltje
-
- Offline
- Junior Member
-
17 years 2 months ago #6306
by Repelzteeltje
Replied by Repelzteeltje on topic Re:Getting All-Video/3rd Party Plugins to work in the forum
Hi there....
it seems that my template is coded different or so but the only changes that generate effect to view.php is the view.php in the default template... NOT in default_ex !!
When I try the code it all seems to work but the buttons above and under the list are piled up instead of placed in a row.... you can see it here ....
The whole thing worked in FB 1.0.5 but now there's something wrong I can't figure out...
Can someone help me with this one ?
Oh... you can find the board here ...
it seems that my template is coded different or so but the only changes that generate effect to view.php is the view.php in the default template... NOT in default_ex !!
When I try the code it all seems to work but the buttons above and under the list are piled up instead of placed in a row.... you can see it here ....
The whole thing worked in FB 1.0.5 but now there's something wrong I can't figure out...
Can someone help me with this one ?
Oh... you can find the board here ...
Please Log in or Create an account to join the conversation.
17 years 2 months ago #6328
by fazk
Replied by fazk on topic Re:Getting All-Video/3rd Party Plugins to work in the forum
It works on my site and thanks a lot!
Please Log in or Create an account to join the conversation.
Time to create page: 0.251 seconds