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

Pages: 1 2 [3] 4 5 ... 13
31
Preséntate en SMF Simple / Re:Muy buenas.
« on: September 24, 2015 - 01:20 13:20 »
hola juan bienvenido al foro.

Te cuento como me menejo yo con mis foros o web lo que hago es hacer un back por semana de todos los archivos y base de datos.
alhacer el ultimo backup borro el anterior para no tener tanto lios.
por que hago esto y me manejo asi. por que cuando empese lo ice con hosting gratis y aveces se cain :( y chau foro me queria matar, aveces ni volvian a estar online y como avos no te daban solucion :(
me empeñe en aprender como mudar un foro de host y listo.

al tener un backup tenia posibilidad de tener la el foro otra vez online, eso si dependiendo de la antiguedad del backup tenia perdida de info  pero no mucha al menos que allan entrados muchos al foro y postiado mucho... lo que no era tan abitual en el foro :)

y usaba un dominio nuevo que se los mandaba a todos los users por mail, cuando recuperaba el viejo dominio lo redirecionaba al original "Previamente cambiado las dns para el nuevo host o cuenta si era free"
espero que te ayude un poco mi esperincia con los foros ;) un Saludo y espero que se te solucione pronto el incombeniente

32
Tutoriales y Tips SMF / Nuevo Estilo Loading
« on: September 23, 2015 - 10:48 10:48 »
Hola amigos Hoy les traygo una Modificacion para cambiar el aspecto del Loading que trae SMF por uno mas atractivo y profecional 

ARCHIVOS A MODIFICAR
INDEX.CSS
SCRITS.JS

index.css edite la parte del id ajax_in_progress
buscar:
Code: [Select]
#ajax_in_progress
{
background: url(../images/theme/loadingbar.png) repeat-x;
color: #f96f00;
text-align: center;
font-size: 16pt;
padding: 8px;
width: 100%;
height: 66px;
line-height: 25px;
position: fixed;
top: 0;
left: 0;
}
Remplasar:

Code: [Select]
#ajax_in_progress
{
/* MODIFICATE BY PIPI2010   */
    background: url(../images/theme/cargando.gif);
text-align: left;
font-size: 12pt;
color: #09F;
    width:60px;
height:60px;
position:absolute;
top:50%;
left:50%;
padding:2px;
    position: fixed;

}
y en el archivo scripts.js modifique para que no salga la X de cancelar
Buscar:
Code: [Select]
function create_ajax_indicator_ele()
{
// Create the div for the indicator.
ajax_indicator_ele = document.createElement('div');

// Set the id so it'll load the style properly.
ajax_indicator_ele.id = 'ajax_in_progress';

// Add the image in and link to turn it off.
var cancel_link = document.createElement('a');
cancel_link.href = 'javascript:ajax_indicator(false)';
var cancel_img = document.createElement('img');
cancel_img.src = smf_images_url + '/icons/quick_remove.gif';

if (typeof(ajax_notification_cancel_text) != 'undefined')
{
cancel_img.alt = ajax_notification_cancel_text;
cancel_img.title = ajax_notification_cancel_text;
}

// Add the cancel link and image to the indicator.
cancel_link.appendChild(cancel_img);
ajax_indicator_ele.appendChild(cancel_link);

// Set the text.  (Note:  You MUST append here and not overwrite.)
ajax_indicator_ele.innerHTML += ajax_notification_text;

// Finally attach the element to the body.
document.body.appendChild(ajax_indicator_ele);
}
Remplasar:
Code: [Select]
function create_ajax_indicator_ele()
{
// Create the div for the indicator.
ajax_indicator_ele = document.createElement('div');

// Set the id so it'll load the style properly.
ajax_indicator_ele.id = 'ajax_in_progress';

/* // Add the image in and link to turn it off.
var cancel_link = document.createElement('a');
cancel_link.href = 'javascript:ajax_indicator(false)';
var cancel_img = document.createElement('img');
cancel_img.src = smf_images_url + '/icons/quick_remove.gif';

if (typeof(ajax_notification_cancel_text) != 'undefined')
{
cancel_img.alt = ajax_notification_cancel_text;
cancel_img.title = ajax_notification_cancel_text;
}

// Add the cancel link and image to the indicator.
cancel_link.appendChild(cancel_img);
ajax_indicator_ele.appendChild(cancel_link);*/

// Set the text.  (Note:  You MUST append here and not overwrite.)
ajax_indicator_ele.innerHTML += ajax_notification_text;

// Finally attach the element to the body.
document.body.appendChild(ajax_indicator_ele);
}
subir la imagen cargando.gif en la carpeta de tu tema/images/theme
les dejo una imagen adjunata de como quedo y la imagen de cargando espero que les guste y lo usen, agradescan ;)

33
Soporte General SMF / Re:como cambiar cartel de Cargando....
« on: September 22, 2015 - 07:00 19:00 »
Genial man, te quedo super!
gracias bro quedo bien ;) al final era un toque la modificacion :)

34
Eso no es propio de html5, esas clases las implementan frameworks como bootstrap o foundation

jeje nunca me las estudie solo las use un par de veces y pense que heran html5 :( perdon por mi ignorancia ;)

35
lo que podes hacer es usar html5 y con eso indicar que cuando cambie la resolucion no muestre la imagen

ejemplo agrga en la classe los hiden

hidden-sm ='creo que es para dispocitivos movil'

hidden-xs = 'dispocitivos como tables'

PD: no estoy muy seguro cual de los dos es cual pero proba seguro que te sirven yo hace tiempo lo use para cuando abran desde el movil o tablet no aparesca el menu original sino que aparesca uno modificado y use los dos hidden

36
Preséntate en SMF Simple / Re:Buenas, me presento
« on: September 22, 2015 - 03:38 15:38 »
Bienvenido al foro y que te balla muy bien con tu emprendimiento y como dijo 4K estamos para lo que necesites ;)

37
Soporte General SMF / Re:como cambiar cartel de Cargando....
« on: September 22, 2015 - 01:27 13:27 »
Tendrias que buscar las clases css que la componen, el texto creo que esta como string de javascript en el index.template.php
si encontre la variable del javascript pero no encuentro el css ni el codigo html para modificarlo

EDITO:
despues de pensar un poco encontre la parte a modificar dejo mi modificacion para que vean como quedo

en el index.css edite la parte del id ajax_in_progress

buscar:
Code: [Select]
#ajax_in_progress
{
background: url(../images/theme/loadingbar.png) repeat-x;
color: #f96f00;
text-align: center;
font-size: 16pt;
padding: 8px;
width: 100%;
height: 66px;
line-height: 25px;
position: fixed;
top: 0;
left: 0;
}
Remplasar:

Code: [Select]
#ajax_in_progress
{
/* MODIFICATE BYE PIPI   */
    background: url(../images/theme/cargando.gif);
text-align: left;
font-size: 12pt;
color: #09F;
    width:60px;
height:60px;
position:absolute;
top:50%;
left:50%;
padding:2px;
    position: fixed;

}
y en el archivo scripts.js modifique para que no salga la X de cancelar
Buscar:
Code: [Select]
function create_ajax_indicator_ele()
{
// Create the div for the indicator.
ajax_indicator_ele = document.createElement('div');

// Set the id so it'll load the style properly.
ajax_indicator_ele.id = 'ajax_in_progress';

// Add the image in and link to turn it off.
var cancel_link = document.createElement('a');
cancel_link.href = 'javascript:ajax_indicator(false)';
var cancel_img = document.createElement('img');
cancel_img.src = smf_images_url + '/icons/quick_remove.gif';

if (typeof(ajax_notification_cancel_text) != 'undefined')
{
cancel_img.alt = ajax_notification_cancel_text;
cancel_img.title = ajax_notification_cancel_text;
}

// Add the cancel link and image to the indicator.
cancel_link.appendChild(cancel_img);
ajax_indicator_ele.appendChild(cancel_link);

// Set the text.  (Note:  You MUST append here and not overwrite.)
ajax_indicator_ele.innerHTML += ajax_notification_text;

// Finally attach the element to the body.
document.body.appendChild(ajax_indicator_ele);
}
Remplasar:
Code: [Select]
function create_ajax_indicator_ele()
{
// Create the div for the indicator.
ajax_indicator_ele = document.createElement('div');

// Set the id so it'll load the style properly.
ajax_indicator_ele.id = 'ajax_in_progress';

/* // Add the image in and link to turn it off.
var cancel_link = document.createElement('a');
cancel_link.href = 'javascript:ajax_indicator(false)';
var cancel_img = document.createElement('img');
cancel_img.src = smf_images_url + '/icons/quick_remove.gif';

if (typeof(ajax_notification_cancel_text) != 'undefined')
{
cancel_img.alt = ajax_notification_cancel_text;
cancel_img.title = ajax_notification_cancel_text;
}

// Add the cancel link and image to the indicator.
cancel_link.appendChild(cancel_img);
ajax_indicator_ele.appendChild(cancel_link);*/

// Set the text.  (Note:  You MUST append here and not overwrite.)
ajax_indicator_ele.innerHTML += ajax_notification_text;

// Finally attach the element to the body.
document.body.appendChild(ajax_indicator_ele);
}
les dejo una imagen adjunata de como quedo ;)

38
Soporte General SMF / como cambiar cartel de Cargando....
« on: September 21, 2015 - 07:32 19:32 »
como cambiar cartel de Cargando....

Datos importantes:
Url del foro: unis.com
Version de SMF: 2.0.10
Theme del foro: DSV4

Descripcion del problema:
hola amigos lo que quiere saver es como modificar el artel de cargando...
ya que instale y modifique un mod viejo de ajax para las respuestas y quiero cambiar ese cartel por otro.
aca les dejo una imagen de referencia

39
Soporte General SMF / Re:Gestor de descargas
« on: September 15, 2015 - 09:25 21:25 »
nadie me puede dar una mano en algun gestor de archivos para smf   :'(

40
Soporte General SMF / Gestor de descargas
« on: September 09, 2015 - 03:25 15:25 »
Gestor de descargas

Datos importantes:
Url del foro: uni2s.com
Version de SMF: 2.0.10

hola amigos otra vez por aca,
lo que estoy buscando es un mod para gestionar descargas que no sea tan complicado para el Usuario
es solo para archivos PDF y XLS
desya muchas gracias ;)

41
Preséntate en SMF Simple / Re:Otras ves con SMFSimple ;)
« on: May 12, 2015 - 11:19 11:19 »
La vida nos lleva por lugares insospechados

jeje si no vos en alemania lean en camcum


y 4kstore trabajando a full jeje

42
El barcito / Re:Que Pasa Con SMFSimple ?
« on: May 12, 2015 - 11:06 11:06 »
perdon ahy lo corregi :D

43
El barcito / Que Pasa Con SMFSimple ?
« on: May 11, 2015 - 05:58 17:58 »
buenas amigos despues de mi larga ausencia en SMFSimple e buelto a manipular el codigo :D
lo que veo es que esta muy pasivo esto :(

¿Que anda pasando no es bueno el Soporte se Brinda ?

Dejanos Tu punto de vista

44
Preséntate en SMF Simple / Re:Otras ves con SMFSimple ;)
« on: May 09, 2015 - 04:16 16:16 »
Willkommen Zuruk!
GRACIAS BRO

PD: te fusiste a alemania jejeje  como cambiaron las cosas por aca jeje

45
Tutoriales y Tips SMF / Re:Compartir posts con Whatsapp
« on: May 09, 2015 - 04:04 16:04 »
bueno me puese a probarlo y funciona muy bien solo con Celulares asi que le agrege uno modificaciones para que solo funcione cuando entran del movil

Display.template.php =>De Tu Tema

BUSCAR:
Code: [Select]
echo '
</div>
<div class="moderatorbar">

REMPLASAR POR:
Code: [Select]
echo '
</div>
<div id="whatsapp" style="display:none;">
                        <a href="whatsapp://send?text=Mira: ', $message['subject'], ' - ', $scripturl, '?topic=', $context['current_topic'], '" data-action="share/whatsapp/share"><img src="', $settings['images_url'], '/whatsapp.png" width="195" height="38" alt="Whatsapp"></a>
</div>
<div class="moderatorbar">

index.template.php =>De Tu Tema

BUSCAR:
Code: [Select]
// Here comes the JavaScript bits!
echo '

REMPLASAR POR :
Code: [Select]
// Here comes the JavaScript bits!
echo '
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
<script>
var device = navigator.userAgent
if (device.match(/Iphone/i)|| device.match(/Ipod/i)|| device.match(/Android/i)|| device.match(/J2ME/i)|| device.match(/BlackBerry/i)|| device.match(/iPhone|iPad|iPod/i)|| device.match(/Opera Mini/i)|| device.match(/IEMobile/i)|| device.match(/Mobile/i)|| device.match(/Windows Phone/i)|| device.match(/windows mobile/i)|| device.match(/windows ce/i)|| device.match(/webOS/i)|| device.match(/palm/i)|| device.match(/bada/i)|| device.match(/series60/i)|| device.match(/nokia/i)|| device.match(/symbian/i)|| device.match(/HTC/i))
 {$(document).ready(function(){document.getElementById(\'whatsapp\').style.display = \'block\';});}else{$(document).ready(function(){document.getElementById(\'whatsapp\').style.display = \'none\';});}
</script>

AGREGAR EN LA CARPETA IMAGES DE SU TEMA LA IMAGEN ADJUNTA

DEMO: http://uni2s.com/index.php?topic=2.msg2#msg2

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