I have the plugins installed on my site. it is nice!
I am having some issues with the forum post plugin.
-it posted the "forum profile" at the bottom of the "forum posts" (wrong tab)
...I moved the order of the plugin then it broke the tables, leads me to beleive it is a formatting issue. I will work on this and report.
-all posts are fully expanded.
...a list view would be much nicer
I had to manually enter my absolute path to SMF as well. I am using SMF_Plugins_1-1-1.zip
I am having the _UE_USE_CB_AVATAR_IN_SMF call in the profile...
-I edited administrator/components/com_comprofiler/language/english.php as follows:
<?php
defined( '_VALID_MOS' ) or die( 'Direct Access to this location is not allowed.' );
define('_UE_NO_CB_AVATAR_TO_SYNC_WITH_SMF','You do not have a Community
avatar. You need to choose one if you wish to synchronize with the
forum.');
define('_UE_USE_CB_AVATAR_IN_SMF','Use my Community avatar on the forums (optional).');
global $mainframe, $mosConfig_lang;
$UElanguagePath=$mainframe->getCfg( 'absolute_path' ).'/components/com_comprofiler/plugin/language';
if (file_exists($UElanguagePath.'/'.$mosConfig_lang.'/'.$mosConfig_lang.'.php')) {
include_once($UElanguagePath.'/'.$mosConfig_lang.'/'.$mosConfig_lang.'.php');
} else include_once($UElanguagePath.'/default_language/default_language.php');
?>