-
AuthorPosts
-
October 21, 2011 at 2:08 am #169889
I was trying different ways to put JA Comments in 3th party component, but Im a novice and I dont know.. exacly how it put in my joomsport component? Some one who can help my??
amd other question is: How to setup sp in article view dont shows comments form but just a linkt to it?
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
October 21, 2011 at 3:07 am #420615Hi
Are you meaning use JA Comments into JoomSport component ???
Thank you
Viet VuOctober 21, 2011 at 12:38 pm #420705yes thats rigt, becouse i have many teams there and vill people can leave comment to team and players
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
October 24, 2011 at 4:33 am #421108Hi
Until this component still trigged Joomla content events it still can use .
But if not … I’m not sure. I would need check into code to find out that.
Thank you
Viet VuOctober 24, 2011 at 8:57 am #421164This is a view of team loyaut…
[PHP]<?php // no direct access
defined(‘_JEXEC’) or die(‘Restricted access’);if(isset($this->message)){
$this->display(‘message’);
}
$Itemid = JRequest::getInt(‘Itemid’);?>
<?php if ( $this->params->def( ‘show_page_title’, 1 ) ) : ?>
<div class=”componentheading<?php echo $this->params->get( ‘pageclass_sfx’ ); ?>”>
<?phpif($this->team->t_emblem && is_file(‘media/bearleague/’.$this->team->t_emblem)){
echo ‘<img src=”‘.JURI::base().’media/bearleague/’.$this->team->t_emblem.'” width=”40″>’;
}
?>
<?php echo $this->escape($this->params->get(‘page_title’)); ?>
</div>
<?php endif; ?>
<div class=”clrthis”>
<?php
require_once(JPATH_ROOT.DS.’components’.DS.’com_joomsport’.DS.’includes’.DS.’tabs.php’);
$etabs = new esTabs();
$etabs->newTab($this->bl_lang[‘BL_TAB_TEAM’],’etab_team’,”,’vis’);
$etabs->newTab($this->bl_lang[‘BL_TAB_MATCHES’],’etab_match’,”);
$etabs->newTab($this->bl_lang[‘BL_TAB_PLAYERS’],’etab_pl’,”);
if(count($this->photos)){
$etabs->newTab($this->bl_lang[‘BL_TAB_PHOTOS’],’etab_photos’);
}?>
</div>
<div id=”etab_team_div” class=”tabdiv”><table cellpadding=”0″ cellspacing=”0″ class=”jsnoborders”>
<tr>
<td valign=”top”>
<div style=”background-color:#eee;padding:10px;”>
<?php
if($this->def_img && is_file(‘media/bearleague/’.$this->def_img)){$imgsize = getimagesize(‘media/bearleague/’.$this->def_img);
if($imgsize[0] > 200){
$width = 200;
}else{
$width = $imgsize[0];
}echo ‘<a rel=”lightbox-imgsportteamx” href=”‘.getImgPop($this->def_img).'” class=”team-images”><img src=”‘.JURI::base().’media/bearleague/’.$this->def_img.'” width=”‘.$width.'” /></a>’;
}else{
echo ‘<img src=”‘.JURI::base().’media/bearleague/teams_st.gif” width=”200″ />’;
}?>
</div>
</td>
<td valign=”top” id=”t_city”>
<table>
<?php if($this->team->t_city){?>
<tr>
<td width=”100″ class=”team_info”>
<?php echo $this->bl_lang[‘BL_CITY’];?> :
</td>
<td>
<?php echo $this->team->t_city ;?>
</td>
</tr>
<?php}
?>
<?php
for ($p=0;$p<count($this->ext_fields);$p++){
if($this->ext_fields[$p]->fvalue){
?>
<tr>
<td class=”team_info”>
<?php echo $this->ext_fields[$p]->name?> :
</td>
<td>
<?php echo $this->ext_fields[$p]->fvalue?>
</td>
</tr>
<?php
}
}
?>
</table>
</td>
</tr>
<tr>
<td colspan=”2″>
<?php echo $this->team->t_descr;?>
</td>
{JFBCLike layout=button_count show_send_button=true width=300 action=like font=verdana colorscheme=dark}
</tr>
</table>
</div>
<div id=”etab_match_div” class=”tabdiv” style=”display:none;”>
<table id=”calendar” cellpadding=”0″ cellspacing=”0″ class=”jsnoborders”>
<?php
for($i=0;$i<count($this->matshes);$i++){
$match = $this->matshes[$i];
?>
<tr>
<td class=”m_name” nowrap=”nowrap”><?php echo $match->m_name.”:”?></td>
<td nowrap=”nowrap”><?php echo date_bl($match->m_date,$match->m_time);?></td>
<td class=”team_thome”><?php echo $match->home?></td>
<td class=”match_result” nowrap=”nowrap”>
<?php
if($match->m_played == 1){
echo $match->score1?> : <?php echo $match->score2; if($this->enbl_extra && $match->is_extra){ echo ” (“.$this->bl_lang[‘BL_RES_EXTRA’].”)”;}
}else{
echo ” – : – “;
}
?>
</td>
<td class=”team_taway”><?php echo $match->away?></td>
<td class=”match_details”>
<a href=”<?php echo JRoute::_(‘index.php?option=com_joomsport&task=view_match&id=’.$match->mid.’&Itemid=’.$Itemid).'”>’.$this->bl_lang[‘BL_LINK_DETAILMATCH’].’ ‘?></a>
</td>
</tr>
<?php
}
?>
</table>
</div>
<div id=”etab_pl_div” class=”tabdiv” style=”display:none;”>
<table id=”e_table” cellpadding=”3″ cellspacing=”0″>
<?php
if(count($this->players)){
?>
<thead>
<tr>
<?php
for ($j=0;$j<count($this->players[0]);$j++){
$axis = ($j > 1)?”int”:”string”;
echo ‘<th class=”sort asc” axis=”‘.$axis.'”>’.$this->players[0][$j].”</th>”;
}
?>
</tr>
</thead>
<tbody>
<?php
for($i=1;$i<count($this->players);$i++){
$players = $this->players[$i];
?>
<tr>
<?php
for ($j=0;$j<count($players);$j++){
echo “<td>”.$players[$j].”</td>”;
}
?></tr>
<?php
}
?>
</tbody>
<?php } ?>
</table>
</div>
<?phpif(count($this->photos)){
echo ‘<div id=”etab_photos_div” class=”tabdiv” style=”display:none;”>’;
echo “<table class=’jsnoborders’><tr><td>”;
for($i=0;$i<count($this->photos);$i++){
$photo = $this->photos[$i];?>
<div style=”float:left; padding:10px; height:120px;”>
<a rel=”lightbox-imgsport” title=”<?php echo htmlspecialchars($photo->name)?>” href=”<?php echo getImgPop($photo->filename)?>” class=”team-images”><img src=”<?php echo (JURI::base().’media/bearleague/’.$photo->filename);?>” height=”100″ class=”allimages” alt=”<?php echo htmlspecialchars($photo->name)?>” title=”<?php echo htmlspecialchars($photo->name)?>” /></a>
</div>
<?php
}
echo “</td></tr></table></div>”;}
?>
<div align=”right” style=”padding-bottom:30px;”><div style=”width:100px;float:right;text-align:right”><a href=”javascript:void(0);” onclick=”history.back(-1);”><?php echo $this->bl_lang[‘BL_BACK’]?></a></div></div>
<script type=”text/javascript” src=”<?php echo JURI::base()?>components/com_joomsport/js/grid.js”></script>
<script type=”text/javascript”>
new Grid($(‘e_table’));
</script>[/PHP]And this is a view of player view
[PHP]<?php // no direct access
defined(‘_JEXEC’) or die(‘Restricted access’);if(isset($this->message)){
$this->display(‘message’);
}
?>
<?php if ( $this->params->def( ‘show_page_title’, 1 ) ) : ?>
<div class=”componentheading<?php echo $this->params->get( ‘pageclass_sfx’ ); ?>”><?php echo $this->escape($this->params->get(‘page_title’)); ?></div>
<?php endif; ?>
<div class=”clrthis”>
<?php
require_once(JPATH_ROOT.DS.’components’.DS.’com_joomsport’.DS.’includes’.DS.’tabs.php’);
$etabs = new esTabs();
$etabs->newTab($this->bl_lang[‘BL_TAB_PLAYER’],’etab_pl’,”,’vis’);
$etabs->newTab($this->bl_lang[‘BL_TAB_STAT’],’etab_stat’,”);if(count($this->photos)){
$etabs->newTab($this->bl_lang[‘BL_TAB_PHOTOS’],’etab_photos’);
}?>
</div>
<div id=”etab_pl_div” class=”tabdiv”>
<table class=”jsnoborders”>
<tr>
<td valign=”top” width=”200″>
<div style=”background-color:#F3EFE5;padding:10px;”>
<?php
if($this->def_img && is_file(‘media/bearleague/’.$this->def_img)){
$imgsize = getimagesize(‘media/bearleague/’.$this->def_img);
if($imgsize[0] > 200){
$width = 200;
}else{
$width = $imgsize[0];
}echo ‘<a rel=”lightbox-imgsportteam” href=”‘.getImgPop($this->def_img).'” href=”‘.JURI::base().’media/bearleague/’.$this->def_img.'” class=”team-images”><img src=”‘.JURI::base().’media/bearleague/’.$this->def_img.'” width=”‘.$width.'” /></a>’;
}else{
echo ‘<img src=”‘.JURI::base().’media/bearleague/player_st.gif” width=”200″ />’;
}?>
</div></td>
<td valign=”top”>
<table class=”jsnoborders”>
<tr>
<td width=”100″ class=”player_info”>
<?php echo $this->bl_lang[“BL_NAME”];?> :
</td>
<td>
<?php echo $this->player->first_name.’ ‘.$this->player->last_name ;?>
</td>
{JFBCLike layout=button_count show_send_button=true width=300 action=like font=verdana colorscheme=light}
</tr>
<?php if($this->player->p_name) {?>
<tr>
<td class=”player_info”>
<?php echo $this->bl_lang[“BL_POSITION”];?> :
</td>
<td>
<?php echo $this->player->p_name ;?>
</td>
</tr>
<?php } ?>
<?php if($this->player->nick) {?>
<tr>
<td class=”player_info”>
<?php echo $this->bl_lang[“BL_NICK”];?> :
</td>
<td>
<?php echo $this->player->nick ;?>
</td>
</tr>
<?php
}
for ($p=0;$p<count($this->ext_fields);$p++){if($this->ext_fields[$p]->fvalue){
?>
<tr>
<td class=”player_info”>
<?php echo $this->ext_fields[$p]->name?> :
</td>
<td>
<?php echo $this->ext_fields[$p]->fvalue?>
</td>
</tr><?php
}
}
?>
</table>
</td>
</tr><tr>
<td colspan=”2″>
<?php echo $this->player->about;?>
</td>
</tr>
</table>
</div>
<div id=”etab_stat_div” class=”tabdiv” style=”display:none;”>
<table class=”jsnoborders”><?php
for($i=0;$i<count($this->stat_array);$i++){
$stats = $this->stat_array[$i];
echo “<tr>”;
echo “<td>”;
echo $stats[2];
echo “</td>”;
echo “<td>”;
echo $stats[0];
echo “</td>”;
echo “<td>”;
echo $stats[1];
echo “</td>”;
echo “</tr>”;
}
?>
</table>
</div>
<?phpif(count($this->photos)){
echo ‘<div id=”etab_photos_div” class=”tabdiv” style=”display:none;”>’;
echo “<table class=’jsnoborders’><tr><td>”;
for($i=0;$i<count($this->photos);$i++){
$photo = $this->photos[$i];
?>
<div style=”float:left; padding:10px; height:120px;”>
<a rel=”lightbox-imgsport” title=”<?php echo htmlspecialchars($photo->name)?>” href=”<?php echo getImgPop($photo->filename)?>” class=”team-images”><img src=”<?php echo (JURI::base().’media/bearleague/’.$photo->filename);?>” title=”<?php echo htmlspecialchars($photo->name)?>” alt=”<?php echo htmlspecialchars($photo->name)?>” height=”100″ class=”allimages” /></a>
</div>
<?php
}
echo “</td></tr></table></div>”;}
?>
{JFBCComments}
<div align=”right” style=”padding-bottom:30px;”><div style=”width:100px;float:right;text-align:right”><a href=”javascript:void(0);” onclick=”history.back(-1);”><?php echo $this->bl_lang[“BL_BACK”]?></a></div></div>[/PHP]and a match view
[PHP]<?php // no direct access
defined(‘_JEXEC’) or die(‘Restricted access’);if(isset($this->message)){
$this->display(‘message’);
}
$match = $this->match;
$lists = $this->lists;
$Itemid = JRequest::getInt(‘Itemid’);?>
<?php if ( $this->params->def( ‘show_page_title’, 1 ) ) : ?>
<div class=”componentheading<?php echo $this->params->get( ‘pageclass_sfx’ ); ?>”>
<?php echo $this->escape($this->params->get(‘page_title’)); ?>
</div>
<?php endif; ?>
<div class=”clrthis”><?php
require_once(JPATH_ROOT.DS.’components’.DS.’com_joomsport’.DS.’includes’.DS.’tabs.php’);
$etabs = new esTabs();
$etabs->newTab($this->bl_lang[‘BL_TAB_MATCH’],’etab_match’,”,’vis’);
$how_rowst = (count($lists[‘squard1’]) > count($lists[‘squard2’]))?count($lists[‘squard1’]):count($lists[‘squard2’]);
if($how_rowst){
$etabs->newTab($this->bl_lang[‘BL_TAB_SQUAD’],’etab_squad’);
}
$how_rowsev = (count($this->h_events) > count($this->a_events))?count($this->h_events):count($this->a_events);
if($how_rowsev){
$etabs->newTab($this->bl_lang[‘BL_TBL_STAT’],’etab_stats’);
}
if(count($this->photos)){
$etabs->newTab($this->bl_lang[‘BL_TAB_PHOTOS’],’etab_photos’);
}?>
</div>
<div id=”etab_match_div” class=”tabdiv”>
<?phpecho ‘<div id=”d_name”>’.$match->m_name.”</div>”;
?>
<table style=”margin-top:15px;” border=”0″ cellpadding=”5″ cellspacing=”0″ width=”100%” class=”jsnoborders”>
<?php
?>
<tr>
<td colspan=”6″ align=”center”>
<?php echo $match->m_location;?>
</td>
</tr>
<tr id=”score” valign=”top”>
<th id=”match_thome” nowrap><?php echo $match->home?></th>
<th id=”match_rhome” nowrap colspan=”2″><?php echo ($match->m_played?$match->score1:’-‘).’ :’?> </th>
<th id=”match_raway” width=”5%” colspan=”2″ ><?php echo ($match->m_played?$match->score2:’-‘);?></th>
<th id=”match_taway” nowrap><?php echo ‘<div style=”float: left; “>’.$match->away.'</div>’; if($this->enbl_extra && $match->is_extra){ echo “<div id=’overtime’ style=’float: left;’> (“.$this->bl_lang[‘BL_RES_EXTRA’].”)</div>”;}?></th>
</tr>
<tr>
<td class=”date_and_time” colspan=”6″>
<?php
if($match->m_date){
echo date_bl($match->m_date,$match->m_time);
}
?>
</td>
</tr>
{JFBCLike layout=button_count action=like font=verdana colorscheme=light}
<?php
$prev_id = 0;
$ev_count = (count($this->m_events_home) > count($this->m_events_away)) ? (count($this->m_events_home)) : (count($this->m_events_away));
for($i=0;$i<$ev_count;$i++){
?>
<tr>
<?php
if(isset($this->m_events_home[$i])){
echo ‘<td class=”home_event”>’;
if($this->m_events_home[$i]->e_img && is_file(‘media/bearleague/events/’.$this->m_events_home[$i]->e_img)){
echo ‘<img height=”16″ src=”‘.JURI::base().’media/bearleague/events/’.$this->m_events_home[$i]->e_img.'” title=”‘.$this->m_events_home[$i]->e_name.'” />’;
}else{
echo $this->m_events_home[$i]->e_name;
}
$link = JRoute::_(‘index.php?option=com_joomsport&task=player&id=’.$this->m_events_home[$i]->plid.’&sid=’.$match->s_id.’&Itemid=’.$Itemid);
echo ” <a href='”.$link.”‘>”.$this->m_events_home[$i]->p_name.”</a>”;
echo ‘</td>’;
?>
<td class=”home_event_count”>
<?php
if($this->m_events_home[$i]->ecount){
echo $this->m_events_home[$i]->ecount;
}else echo ” “;
?>
</td>
<td class=”home_event_minute”>
<?php
if($this->m_events_home[$i]->minutes){
echo $this->m_events_home[$i]->minutes.'”‘;
}
echo ‘ ‘;
?>
</td>
<?php
}else{
echo ‘<td style=”padding:0px” colspan=”3″> </td>’;
}
if(isset($this->m_events_away[$i])){
?>
<td class=”away_event_minute”>
<?php
if($this->m_events_away[$i]->minutes){
echo $this->m_events_away[$i]->minutes.'”‘;
}else echo ” “;
?>
</td>
<td class=”away_event_count”>
<?php
if($this->m_events_away[$i]->ecount){
echo $this->m_events_away[$i]->ecount;
}else echo ” “;
?>
</td>
<?php
echo ‘<td class=”away_event” >’;
if($this->m_events_away[$i]->e_img && is_file(‘media/bearleague/events/’.$this->m_events_away[$i]->e_img)){
echo ‘<img height=”16″ src=”‘.JURI::base().’media/bearleague/events/’.$this->m_events_away[$i]->e_img.'” title=”‘.$this->m_events_away[$i]->e_name.'” />’;
}else{
echo $this->m_events_away[$i]->e_name;
}
$link = JRoute::_(‘index.php?option=com_joomsport&task=player&id=’.$this->m_events_away[$i]->plid.’&sid=’.$match->s_id.’&Itemid=’.$Itemid);echo ” <a href='”.$link.”‘>”.$this->m_events_away[$i]->p_name.”</a>”;
echo ‘</td>’;
}else{
echo ‘<td style=”padding:0px” colspan=”3″> </td>’;
}
?>
</tr><?php
}?></table>
<table class=”jsnoborders”>
<?php
for ($p=0;$p<count($this->ext_fields);$p++){if($this->ext_fields[$p]->fvalue){
?>
<tr>
<td class=”player_info”>
<?php echo $this->ext_fields[$p]->name?> :
</td>
<td>
<?php echo $this->ext_fields[$p]->fvalue?>
</td></tr>
<?php
}
}
?>
</table>
<br />
<div>
<?php echo $match->match_descr; ?>
</div>
</div>
<?php$how_rows = (count($lists[‘squard1’]) > count($lists[‘squard2’]))?count($lists[‘squard1’]):count($lists[‘squard2’]);
if($how_rows){
echo ‘<div id=”etab_squad_div” class=”tabdiv” style=”display:none;”>’;
?>
<?php
echo “<div class=’mainsquad’ style=’text-align:center’><h4>”.$this->bl_lang[‘BL_LINEUP’].”</h4></div>”;
//$how_rows = (count($lists[‘squard1’]) > count($lists[‘squard2’]))?count($lists[‘squard1’]):count($lists[‘squard2’]);
if($how_rows){
echo ‘<table width=”100%” class=”jsnoborders”>’;
for($p=0;$p<$how_rows;$p++){
echo “<tr>”;
echo “<td width=’50%’ align=’right’ style=’padding-right:20px;’>”.((isset($lists[‘squard1’][$p]->name) && $lists[‘squard1’][$p]->name)?$lists[‘squard1’][$p]->name:” “).”</td>”;
echo “<td>”.((isset($lists[‘squard2’][$p]->name) && $lists[‘squard2’][$p]->name)?$lists[‘squard2’][$p]->name:” “).”</td>”;
echo “</tr>”;
}
echo ‘</table>’;
}
?>
<?php$how_rows = (count($lists[‘squard1_res’]) > count($lists[‘squard2_res’]))?count($lists[‘squard1_res’]):count($lists[‘squard2_res’]);
if($how_rows){
echo “<div class=’mainsquad’ style=’text-align:center’><h4>”.$this->bl_lang[‘BL_SUBTITUTES’].”</h4></div>”;
echo ‘<table width=”100%” class=”jsnoborders”>’;
for($p=0;$p<$how_rows;$p++){
echo “<tr>”;
echo “<td width=’50%’ align=’right’ style=’padding-right:20px;’>”.((isset($lists[‘squard1_res’][$p]->name) && $lists[‘squard1_res’][$p]->name)?$lists[‘squard1_res’][$p]->name:” “).”</td>”;
echo “<td>”.((isset($lists[‘squard2_res’][$p]->name) && $lists[‘squard2_res’][$p]->name)?$lists[‘squard2_res’][$p]->name:” “).”</td>”;
echo “</tr>”;
}
echo ‘</table>’;
}
echo “</div>”;
}
?>
<?php
$how_rows = (count($this->h_events) > count($this->a_events))?count($this->h_events):count($this->a_events);
if($how_rows){
echo ‘<div id=”etab_stats_div” class=”tabdiv” style=”display:none;”>’;
for($p=0;$p<$how_rows;$p++){
if($p==0){echo ‘<table border=”1″ cellpadding=”5″ cellspacing=”0″ width=”100%”>’;
}
echo “<tr>”;
echo “<td width=’40%’>”;
if(isset($this->h_events[$p])){
if($this->h_events[$p]->e_img && is_file(‘media/bearleague/events/’.$this->h_events[$p]->e_img)){
echo ‘<div style=”float:left”><img height=”20″ src=”‘.JURI::base().’media/bearleague/events/’.$this->h_events[$p]->e_img.'” title=”‘.$this->h_events[$p]->e_name.'” /></div>’;
}else{
}
echo ‘<div style=”float:left;padding:5px;”>’.$this->h_events[$p]->e_name.”</div>”;
}else echo ” “;
echo “</td>”;
echo “<td class=’home_stats_minute’ width=’10%’>”;
if(isset($this->h_events[$p])){
echo $this->h_events[$p]->ecount;
}else echo ” “;
echo “</td>”;
echo “<td class=’away_stats_minute’ width=’10%’>”;
if(isset($this->a_events[$p])){
echo $this->a_events[$p]->ecount;
}else echo ” “;
echo “</td>”;
echo “<td width=’40%’>”;
if(isset($this->a_events[$p])){
if($this->a_events[$p]->e_img && is_file(‘media/bearleague/events/’.$this->a_events[$p]->e_img)){
echo ‘<div style=”float:left”><img height=”20″ src=”‘.JURI::base().’media/bearleague/events/’.$this->a_events[$p]->e_img.'” title=”‘.$this->a_events[$p]->e_name.'” /></div>’;
}else{
}
echo ‘<div style=”float:left;padding:5px;”>’.$this->a_events[$p]->e_name.”</div>”;
}else echo ” “;
echo “</td>”;
echo “</tr>”;
}
echo “</table></div>”;
}
?>
<?phpif(count($this->photos)){
echo ‘<div id=”etab_photos_div” class=”tabdiv” style=”display:none;”>’;
echo “<table class=’jsnoborders’><tr><td>”;
for($i=0;$i<count($this->photos);$i++){
$photo = $this->photos[$i];
?>
<div style=”float:left; padding:10px; height:120px;”>
<a rel=”lightbox-imgsport” title=”<?php echo htmlspecialchars($photo->name)?>” href=”<?php echo getImgPop($photo->filename)?>” class=”team-images”><img src=”<?php echo (JURI::base().’media/bearleague/’.$photo->filename);?>” height=”100″ class=”allimages” alt=”<?php echo htmlspecialchars($photo->name)?>” title=”<?php echo htmlspecialchars($photo->name)?>” /></a>
</div>
<?php
}
echo “</td></tr></table></div>”;}
?>{JFBCComments}
<div align=”right”><div style=”width:100px;float:right;text-align:right”><a href=”javascript:void(0);” onclick=”history.back(-1);”><?php echo $this->bl_lang[“BL_BACK”]?></a></div></div>[/PHP]i will use comments in those 3 views…
jooservices Friendjooservices
- Join date:
- October 2014
- Posts:
- 8556
- Downloads:
- 0
- Uploads:
- 130
- Thanked:
- 1245 times in 1121 posts
October 27, 2011 at 3:43 pm #421967Hi
Please allow me touch into your code 😉 via FTP
These of your posted code can’t help me much :(.
Thank you
Viet VuNovember 15, 2011 at 1:50 am #424662How its going with my question? I send you ftp for a time ago…
-
AuthorPosts
This topic contains 7 replies, has 2 voices, and was last updated by vivapoland 13 years ago.
We moved to new unified forum. Please post all new support queries in our New Forum