Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Cesar

Pages: 1 ... 6 7 [8] 9 10 ... 76
106
adjunta tu display.template por favor

107
aunque le asignes todos los permisos el usuario que crees nunca va a tener TODOS los permisos ya que el creador del foro si no me equivoco tiene permisos especiales. de todas maneras losox responde muy bien tu pregunta
manito arriba para losox :D

108
Soporte General SMF / Re:Group by points no me funciona en smf 2.02
« on: July 19, 2012 - 11:05 23:05 »
por favor corrige la web de tu perfil, no te banearemos tranquilo solo que para darte soporte necesitamos una web online para poder ayudarme mas facilmente
saludos
César

109
Soporte General SMF / Re:Problema al instalr Mod Hide
« on: July 15, 2012 - 12:05 00:05 »
ahh ya perdon entonces :P
manito arriba :P

110
Soporte General SMF / Re:Problema MOD register_bar_mod_v3
« on: July 14, 2012 - 11:59 11:59 »
marco como resuelto :D!

111
Soporte General SMF / Re:Errores con Ftp Filezilla
« on: July 13, 2012 - 11:26 11:26 »
seguramente excediste la cuota de transferencia... si me equivoco corrijanme... deberas esperar algun tiempo para volver a subir

112
El barcito / Re:Mega Post de Humor [Seguro te saco una sonrisa]
« on: July 12, 2012 - 09:55 21:55 »
estan buenos xD!

114
Soporte General SMF / Re:Problema con código Html
« on: July 11, 2012 - 11:17 11:17 »
marco como resuelto entonces :)

115
Soporte General SMF / Re:Problema al instalr Mod Hide
« on: July 10, 2012 - 07:54 19:54 »
parece que lo instalaste dos veces tendras que ver el parse del mod y retirar los codigos duplicados

116
Soporte General SMF / Re:Problema al instalr Mod Hide
« on: July 10, 2012 - 02:45 14:45 »
Pues si esta repetido tienes que borrarlo.
debes hacer lo que dice losox :D!

117
Soporte General SMF / Re:Problema al instalr Mod Hide
« on: July 10, 2012 - 12:39 12:39 »
fijate si en tu ssi.php tenes este codigo repetido:

Code: [Select]
// Shows the top Thank You Resive.
function ssi_thankYouPostTopResived($topMembers = 5, $output_method = 'echo')
{
global $txt, $scripturl, $modSettings, $smcFunc;

// Fix mistakes ;P
$topMembers = (int) $topMembers;
$topMembers = empty($topMembers) ? 5 : $topMembers;

// Find the latest poster.
$request = $smcFunc['db_query']('', '
SELECT id_member, real_name, thank_you_post_became, thank_you_post_made
FROM {db_prefix}members
ORDER BY thank_you_post_became DESC
LIMIT {int:limit}',
array(
'limit' => $topMembers
)
);
$return = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
{
$return[] = array(
'id' => $row['id_member'],
'name' => $row['real_name'],
'href' => $scripturl . '?action=profile;u=' . $row['id_member'],
'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>',
'thank_you_post_became' => $row['thank_you_post_became'],
'thank_you_post_made' => $row['thank_you_post_made']
);
$colorids[$row['id_member']] = $row['id_member'];
}
$smcFunc['db_free_result']($request);

// Add colors only on installed SSI Member Color Link
if (function_exists('ssi_loadColors') && !empty($colorids))
{
global $color_profile;
ssi_loadColors($colorids);
foreach ($return as $k => $p)
{
$profile = $color_profile[$p['id']];
if (!empty($profile))
$return[$k]['link'] = $profile['link'];
}
}
if ($output_method != 'echo')
return $return;

if (empty($return))
return;

echo '
<table class="ssi_table">
<tr>
<th align="left"></th>
<th align="left">', $txt['thank_you_post_became_display'], '</th>
<th align="left">', $txt['thank_you_post_made_display'], '</th>
</tr>';
foreach ($return as $temp)
echo '
<tr>
<td align="left">
', $temp['link'], '
</td>
<td align="right">', $temp['thank_you_post_became'], '</td>
<td align="right">', $temp['thank_you_post_made'], '</td>
</tr>';
echo '
</table>';
}

// Shows the top Thank You Given.
function ssi_thankYouPostTopGiven($topMembers = 5, $output_method = 'echo')
{
global $txt, $scripturl, $modSettings, $smcFunc;

// Fix mistakes ;P
$topMembers = (int) $topMembers;
$topMembers = empty($topMembers) ? 5 : $topMembers;

// Find the latest poster.
$request = $smcFunc['db_query']('', '
SELECT id_member, real_name, thank_you_post_became, thank_you_post_made
FROM {db_prefix}members
ORDER BY thank_you_post_made DESC
LIMIT {int:limit}',
array(
'limit' => $topMembers
)
);
$return = array();
while ($row = $smcFunc['db_fetch_assoc']($request))
{
$return[] = array(
'id' => $row['id_member'],
'name' => $row['real_name'],
'href' => $scripturl . '?action=profile;u=' . $row['id_member'],
'link' => '<a href="' . $scripturl . '?action=profile;u=' . $row['id_member'] . '">' . $row['real_name'] . '</a>',
'thank_you_post_became' => $row['thank_you_post_became'],
'thank_you_post_made' => $row['thank_you_post_made']
);
$colorids[$row['id_member']] = $row['id_member'];
}
$smcFunc['db_free_result']($request);

// Add colors only on installed SSI Member Color Link
if (function_exists('ssi_loadColors') && !empty($colorids))
{
global $color_profile;
ssi_loadColors($colorids);
foreach ($return as $k => $p)
{
$profile = $color_profile[$p['id']];
if (!empty($profile))
$return[$k]['link'] = $profile['link'];
}
}

if ($output_method != 'echo')
return $return;

if (empty($return))
return;

echo '
<table class="ssi_table">
<tr>
<th align="left"></th>
<th align="left">', $txt['thank_you_post_made_display'], '</th>
<th align="left">', $txt['thank_you_post_became_display'], '</th>
</tr>';
foreach ($return as $temp)
echo '
<tr>
<td align="left">
', $temp['link'], '
</td>
<td align="right">', $temp['thank_you_post_made'], '</td>
<td align="right">', $temp['thank_you_post_became'], '</td>
</tr>';
echo '
</table>';
}

118
Soporte General SMF / Re:Problema al instalr Mod Hide
« on: July 10, 2012 - 12:05 12:05 »
mod hide? no sera el thank o matic???

119
Soporte General SMF / Re:Problema al instalr Mod Hide
« on: July 10, 2012 - 11:50 11:50 »
hola [starter] por favor arregla la url de tu foro en tu perfil primero, y tambien deja el nombre completo del mod, version de smf y theme que usas.
Saludos
Cesar

120
Preséntate en SMF Simple / Re:hola me presento
« on: July 10, 2012 - 11:02 11:02 »
ahh venia con doble sentido jajaj que loco

Pages: 1 ... 6 7 [8] 9 10 ... 76
top

Smfsimple.com es un sitio destinado a brindar un servicio de soporte y herramientas para foros realizados con el sistema de foros gratuito simplemachines.org. Contamos con un selecto equipo de desarrolladores y conocedores del sistema, sus foros estaran en buenas manos.
This site is not affiliated with or endorsed by Simple Machines