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.


Topics - Toro

Pages: [1] 2 3 ... 6
1
Soporte General SMF / Ayuda traduccion Member Awards
« on: June 30, 2014 - 02:53 14:53 »
Ayuda traduccion Member Awards

Datos importantes:
Url del foro: http://cfgamers.com
Version de SMF: 2.0.8
Theme del foro: LOSOX

Descripcion del problema:
Que tal tengo una duda, traduci los archivos AwardsManage.english, AwardsManage.english-utf8, y cree un archivo nuevo con el nombre de AwardsManage.spanish_es-utf8 me traduce todo menos el menú de la Administración ¿Porque?



Ahi se puede ver que esta ya traducido lo que es el contenido pero no el menu de arriba de la adminsitración

2
Soporte General SMF / Ayuda Member Awards
« on: June 30, 2014 - 12:35 00:35 »
Ayuda Member Awards

Datos importantes:
Url del foro: http://cfgamers.com/foro
Version de SMF: 2.0.8
Theme del foro: LOSOX

Descripcion del problema:
Tengo un problema con el Member Awards que ronda por ahi que es una version nueva pero al borrar o al tratar de editar una medalla me sale este error :  

Fatal error: Call to undefined function AwardLoadFiles() in /home3/jupagua/public_html/foro/Sources/AwardsAdmin.php on line 410

3
Club SMFSimple & Sistema de Creditos / Ayuda SMS
« on: December 07, 2013 - 09:10 09:10 »
Intento enviar un SMS desde Colombia con el servicio de telfonia Tigo obviamente tengo salgo pero no me llega el codigo PIN

4
Tutoriales y Tips SMF / Índice Board Formato de tabla
« on: December 07, 2013 - 08:44 08:44 »
Un buen día, mirando algunos TIPS gringos me tope con este gran tutorial para darle un toque diferente a tu foro SMF:


Vamos a editar el BoardIndex.Template.php:

Encontrar:
Code: [Select]
<td class="lastpost">
Reemplazar:
<td class="lastpost" colspan="2">

Encontrar:
Code: [Select]
// Show some basic information about the number of posts, etc.
echo '
               </td>
               <td class="stats windowbg">
                  <p>', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], ' <br />
                  ', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' ' . $txt['board_topics'], '
                  </p>
               </td>

Reemplazar:
Code: [Select]
// Show some basic information about the number of posts, etc.
               echo '
               </td>

Encontrar:
Code: [Select]
            // Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)
            if (!empty($board['children']))
            {
               // Sort the links into an array with new boards bold so it can be imploded.
               $children = array();
               /* Each child in each board's children has:
                     id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
               foreach ($board['children'] as $child)
               {
                  if (!$child['is_redirect'])
                     $child['link'] = '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . ($child['new'] ? '</a> <a href="' . $scripturl . '?action=unread;board=' . $child['id'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')"><img src="' . $settings['lang_images_url'] . '/new.gif" class="new_posts" alt="" />' : '') . '</a>';
                  else
                     $child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>';


                  // Has it posts awaiting approval?
                  if ($child['can_approve_posts'] && ($child['unapproved_posts'] || $child['unapproved_topics']))
                     $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > 0 ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>';


                  $children[] = $child['new'] ? '<strong>' . $child['link'] . '</strong>' : $child['link'];
               }
               echo '
               <tr id="board_', $board['id'], '_children">
                  <td colspan="3" class="children windowbg">
                     <strong>', $txt['parent_boards'], '</strong>: ', implode(', ', $children), '
                  </td>
               </tr>';

Reemplazar:
Code: [Select]
            echo '
               </td>
            </tr>
            <tr class="boardstats">
               <td class="windowbg" ', empty($board['children']) ? 'colspan="1"':'','>';

            // Show the "Child Boards: ". (there's a link_children but we're going to bold the new ones...)
            if (!empty($board['children']))
            {
               // Sort the links into an array with new boards bold so it can be imploded.
               $children = array();
               /* Each child in each board's children has:
                     id, name, description, new (is it new?), topics (#), posts (#), href, link, and last_post. */
               foreach ($board['children'] as $child)
               {
                  if (!$child['is_redirect'])
                     $child['link'] = '<a href="' . $child['href'] . '" ' . ($child['new'] ? 'class="new_posts" ' : '') . 'title="' . ($child['new'] ? $txt['new_posts'] : $txt['old_posts']) . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')">' . $child['name'] . ($child['new'] ? '</a> <a href="' . $scripturl . '?action=unread;board=' . $child['id'] . '" title="' . $txt['new_posts'] . ' (' . $txt['board_topics'] . ': ' . comma_format($child['topics']) . ', ' . $txt['posts'] . ': ' . comma_format($child['posts']) . ')"><img src="' . $settings['lang_images_url'] . '/new.gif" class="new_posts" alt="" />' : '') . '</a>';
                  else
                     $child['link'] = '<a href="' . $child['href'] . '" title="' . comma_format($child['posts']) . ' ' . $txt['redirects'] . '">' . $child['name'] . '</a>';


                  // Has it posts awaiting approval?
                  if ($child['can_approve_posts'] && ($child['unapproved_posts'] || $child['unapproved_topics']))
                     $child['link'] .= ' <a href="' . $scripturl . '?action=moderate;area=postmod;sa=' . ($child['unapproved_topics'] > 0 ? 'topics' : 'posts') . ';brd=' . $child['id'] . ';' . $context['session_var'] . '=' . $context['session_id'] . '" title="' . sprintf($txt['unapproved_posts'], $child['unapproved_topics'], $child['unapproved_posts']) . '" class="moderation_link">(!)</a>';


                  $children[] = $child['new'] ? '<strong>' . $child['link'] . '</strong>' : $child['link'];
               }
               echo '
                  <strong>', $txt['parent_boards'], '</strong>: ', implode(', ', $children);
            }


         echo '
               </td>
               <td class="windowbg" style="text-align: center"><p>', comma_format($board['posts']), ' ', $board['is_redirect'] ? $txt['redirects'] : $txt['posts'], '</p></td>
               <td class="windowbg" style="text-align: center"><p>', $board['is_redirect'] ? '' : comma_format($board['topics']) . ' ' . $txt['board_topics'], '</p></td>
            </tr>';


Encontrar:
Code: [Select]
               <td class="icon windowbg"', !empty($board['children']) ? ' rowspan="2"' : '', '>
Reemplazar:
Code: [Select]
               <td class="icon windowbg" rowspan="2">
Y por ultimo el index.csc añaden esto al final:
Code: [Select]

.boardstats {
   height: 20px;
   padding: 4px;
   margin: 0;
}

Un saludo espero que les guste.

5
Tutoriales y Tips SMF / Colocar items en la SHOP en firma con estilo
« on: December 07, 2013 - 08:31 08:31 »
Un buen día para todos, despues de tener una duda de como poner la SHOP en la firma y como modificar el estilo me puse a practicar con el codigo del Member Awards y ese estilo...  para eso tienen que instalar el SA SHOP (http://custom.simplemachines.org/mods/index.php?mod=1794).

Buscan en el Display.Template.php:
Code: [Select]
// Show the member's signature?
Y arriba justo les aparecera un codigo de la SHOP y lo remplazan por este:
Code: [Select]
}

if ($modSettings['ShopIpDis'] == 1 && $modSettings['ShopIpPos'] == 1)
{
if (count($message['member']['shopitems']) != 0)
{
echo '

<div class="aw_container">
<div class="aw_head">Objetos del usuario</div>';
foreach ($message['member']['shopitems'] as $shopitem)
{
echo '
<img src=" ',$settings['images_url'],'/shopimg/item_images/',$shopitem['image'],'" alt=" ',$shopitem['desc'],'" />&nbsp;&nbsp;';
}
echo '</div>';
}
}

// Show the member's signature?

Luego editaremos el CSS usando el mismo del Member Awaeds:
Code: [Select]
.aw_head
{
    margin: 5px;
    background: rgb(116, 169, 192) none repeat scroll 0%;
color: #fff;
text-align: center;
font-size: 11px;
font-weight: bold;
border-radius: 10px;
}
.aw_container
{
    margin-right: 5px;
    margin-left: 5px;
    text-align: center;

Y listo quedara como en la imagen adjunta.. un saludo

6
Soporte General SMF / Quitar bordes perfil
« on: June 16, 2013 - 11:15 23:15 »
Quitar bordes perfil

Datos importantes:
Url del foro: http://foro.livingthemix.tk/
Version de SMF: 2.0.4
Theme del foro: Metro Style By SMFSimple.com

Descripcion del problema:
Hola tengo una duda, quiero quitar el borde del perfil del theme Metro Style By SMFSimple.com, pero no logro encontrarlo en el css

7
El barcito / La pagina de los venezolanos de futbol
« on: March 29, 2013 - 07:25 19:25 »
La web fue hackeada o no?

8
Soporte General SMF / Me sale el MOD Broken Link List en ingles
« on: March 29, 2013 - 11:08 11:08 »
Me sale el MOD Broken Link List en ingles

Datos importantes:
Url del foro: http://cfgamers.com
Version de SMF: 2.0.4
Theme del foro: Losox

Descripcion del problema:
Que tal tengo un problema y es que instalo el MOD Broken Link List pero me sale en ingles hay alguna traducción?

9
Hola que tal me sale este error al dar clik en el titulo de la noticia que cree>
Method Not Implemented

GET to /forums/index.php not supported.
Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.

y sale eso.. porque
http://dark-loids.org/forums (AYUDO A HACER EL FORO)

10
Hola que tal mi duda es la siguiente como hago que los usuarios no creen temas en categorias donde solo pueden publicar los Administradores.

Como hago eso?

11
Soporte General SMF / Traduccion Ultimate Portal
« on: March 26, 2012 - 09:17 21:17 »
Hola que tal instale el Ultimate portal pero sale en ingles como lo tradusco

12
Soporte General SMF / Error al poner modificacion Adwards en firma
« on: March 19, 2012 - 01:11 01:11 »
Me sale este error al poner la modificacion Adwards en firma:


El tuto es: http://www.smfsimple.com/index.php/topic,1678.msg9461.html#msg9461

13
Soporte General SMF / Subforos en lista estilo Vbulletin
« on: December 20, 2011 - 11:06 11:06 »
Hola que tal queria saber como puedo poder los Subforos en lista pueden ver un ejemplo aqui:
http://www.tarreo.com/foro/

Asi masomenos alguna idea?

14
Soporte General SMF / Hacer que el visitante vea el post del usuario
« on: October 14, 2011 - 08:58 08:58 »
Hola que tal eh visto aqui en SMFsimple que el visitante no pueden ver las respuestas de un tema pero si el creador.
Que MOD usan para eso?
Gracias

15
Soporte General SMF / No muestra las preguntas ve verificacion con captcha
« on: October 11, 2011 - 02:03 14:03 »
Hola que tal instale el reCAPTCHA para SMF 2.0.1 y pues añado una pregunta de refificación pero no la muestra, fui a Anti spam > Numero de preguntas de verificacion (1) > La pregunta cuanto es 1 + 1 pero miren no la muestra:




Y otro problema si pongo (0) en preguntas de verificacion se desaparece el captcha

Pages: [1] 2 3 ... 6
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