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 - Hasslek

#1
Free Mods / Re: SMF Post Prefix
May 26, 2018, 07:03:52 AM
Currently in the creation of a prefix, the color sorter does not work. That is, the browser itself blocks the jQuery file that shows the color selector. I've tried it with the most used browsers (Chrome, Firefox, Edge).

The creation field is functional by adding the hexadecimal color but does not show the color selection menu.

#2
Free Mods / Re: SMF Post Prefix
May 23, 2018, 05:18:01 AM
Quote from: Diego Andrés on May 22, 2018, 08:32:24 PM
2.1 - 22 May 2018
Finally adressed the issues in Search.php.
Fixed a small bug preventing the mod from previweing boards/groups in the settings.

Which file should I replace if I already have the mod installed?
#3
Site Discussion / Nuevos subforos / New forums
July 16, 2014, 10:18:23 PM
Hola, pasándome por el sitio, no he visto una sección dedicada a "recursos" gráficos que pueden servir para la plataforma de SMF, por ejemplo con lo siguiente; Logotipos, Placas, partes específicas de algún lugar del sistema SMF, y bastantes cosas que aún no se me ocurren, pienso que es algo indispensable :)

El subforo podría ser algo como... Recursos Gráficos.




Hi, passing by the site, I have not seen a section on "resources" graphics which can serve to SMF platform, for example with the following; Logos, Badges, specific parts of the SMF system somewhere, and not enough things that occur to me, I think it is indispensable :)

The subforum could be something like ... Graphic resources.
#4
Chit Chat / ¡Hey, hola!
July 16, 2014, 10:10:57 PM
Hola, mi nick es Hasslek, y me paso por aquí por que SMF es mi plataforma de foros preferida, y me gusta mucho la personalización que éste tiene, y la cantidad de cosas que se pueden agregar :). Ya llevo bastante tiempo por aquí, pero por fin hago mi presentación formal.




Hello, my nick is Hasslek, and I step here because SMF is my favorite platform post, and I really like the customization that it has, and the amount of things that can be added :). I have spent some time here, but I finally make my formal presentation.
#5
Previews / NavStyle
July 16, 2014, 09:51:03 PM


NavStyle is a simple theme, combines the FLAT design (flat adaptative design). This theme only is create for practice, I like to see comments and opinions about :).




NavStyle es un tema simple, combinando el estilo FLAT (diseño adaptativo). Este tema sólo ha sido creado para practicar, me gustaría ver comentarios y opiniones acerca :)

#6
Chit Chat / Vuelvo por aquí !
January 22, 2014, 06:35:17 AM
Tras un buen tiempo sin ordenador, que lo tenía estropeado y estar bastante ocupado, vuelvo por aquí, y eso conlleva unos muy buenos tips y tutoriales para que modifiquéis a gusto vuestros pequeños themes y foros !

Un saludo.
#7
Vamos al display.template.php de nuestro theme, y buscamos lo siguiente;

// Show how many posts they have made.
if (!isset($context['disabled_fields']['posts']))
echo '
<img style="margin: 3px 0 0 1px" src="', $settings['images_url'], '/id/postscount.png" alt="" /><span style="text-align:right; margin: 12px 6px 0 0; float: right;">', $message['member']['posts'], '</span><br />';

echo '
</div>
</li>';


Y lo sustituimos por este código;

// Show how many posts they have made.


if (!isset($context['disabled_fields']['posts']))
echo '
<img style="margin: 3px 0 0 1px" src="', $settings['images_url'], '/id/postscount.png" alt="" /><span style="text-align:right; margin: 12px 6px 0 0; float: right;">', $message['member']['posts'], '</span><br />';

echo '
<img style="margin: 3px 0 0 1px" src="', $settings['images_url'], '/id/koinscount.png" alt="" /><span style="text-align:right; margin: 12px 6px 0 0; float: right;">', $message['member']['money'], '</span><br />';
echo '
</div>
</li>';


Una vez echo, nos debería de quedar así;



Recuerda hacer un backup de cada archivo antes de modificarlo.

Cualquier duda, comentad.
#8
Quote from: robertoiui on August 11, 2013, 06:11:23 AM
¿Como podriamos poner que salgan los koins como en KM?

Ahora hago un tutorial ;D
#9
Quote from: robertoiui on August 11, 2013, 06:19:44 AM
Habría alguna forma de poner el boton dar gracias como aquí?
http://megahd.se/foro//pc/deadz-zombies-%28pc%29%28gratis-online!!!%29%283-95gb%29%28espanol%29/msg59803/#msg59803

Un saludo

Aquí tienes la modificación, es la gratis --> http://custom.simplemachines.org/mods/index.php?mod=3029
#10
Un buen tutorial, aunque el de la v5 no estaría nada mal  ::)
#11
Vaya, siempre he tenido el SSI por ahí que lo veo, y no he llegado a tocarlo por pereza, además tengo un portafolio de noticias con mysql en el inicio, le voy a añadir el box de logueo y eso, y las demás funciones que tiene el SSI ::)
#12
Chit Chat / Re:Buenas :)
August 08, 2013, 12:40:34 PM
Bienvenido, disfruta de smfhispano al máximo y aporta cosa y también aprende otras valiosas ;D
#13
Tips and Tutorials / Mostrar "Cargando página"
August 07, 2013, 04:08:41 PM
Aquí os traigo un TIP en el que se añadirá un espacio cuando esté cargando la web, es decir, cuando os salga esto -->

Aquí tenéis una previa de cómo os va a quedar una vez editado;



Vamos a index.template.php de nuestro theme que queremos editar y buscamos lo siguiente;

<body>

Y lo reemplazamos por esto;

<body onload="document.getElementById(\'cargando\').style. display=\'none\';">
<div id="cargando" style="width: 100%; height: 100%; color: #D88135; background: #FAF7D1; border-top: 2px dashed #D88135; border-bottom: 2px dashed #D88135; font-weight: bold; text-align: center"><br>CARGANDO PAGINA<br><br></div>';


Así de sencillo, ya está listo.

Fuentehttp://www.skinmod.eu/