| Extension JoomSEF3 / JFusion Frameless Forums Installation Guide |
|
|
|
|
To use our extension we will need the JomSEF 3 component which you can find free HERE and of the IonCube Loader. If you wish that all your links end with an .html extension, you can do it with JoomSEF. Look for the line : $jname = $pluginParamValue['jfusionplugin'];
And add just before this new line : global $jname;
And this is how it should look now : ...
...... ............ //can be used in plugins filterActivityResults defined('ACTIVITY_MODE') or define('ACTIVITY_MODE', $config['mode']); if ($params->get('new_window')) { $config['new_window'] = '_blank'; } else { $config['new_window'] = '_self'; } $pluginParamValue = $params->get('JFusionPluginParam'); $pluginParamValue = unserialize(base64_decode($pluginParamValue)); global $jname; $jname = $pluginParamValue['jfusionplugin']; if (!empty($jname)) { $pluginParam = new JParameter(''); $pluginParam->loadArray($pluginParamValue); $view = $pluginParam->get('view', 'auto'); $output = ""; if ($title = $pluginParam->get('title', null)) { $output = "<h4>" . $pluginParam->get('title', $jname) . "</h4>\n"; } ............ ...... ... Do the same thing for others if you wish to use them. |