¡Bienvenido a PHPost!

Para participar en el foro, descargar complementos y acceder al chat, necesitas una cuenta activa. Usa un correo electrónico válido para completar la activación.

Crear cuenta gratis

¿Ya tienes cuenta? Inicia sesión aquí

Calificación:
  • 0 voto(s) - 0 Media
  • 1
  • 2
  • 3
  • 4
  • 5

COMPLEMENTOS Compartir Estados Live (Act)
#1

3
Mejor respuesta del mensaje Compartir Estados Live (Act)Capturas
[img]Registrate o inicia tu sesión para ver este contenido[/img]
[img]Registrate o inicia tu sesión para ver este contenido[/img]


                                
En c.posts.php  --> inc --> class --> c.posts.php

Al final antes de la última:                                                                      



Arriba agregar:
function getLastShouts(){
        global 
$tsCore;
        
//
        
$query db_exec(array(__FILE____LINE__), 'query''SELECT (s.pub_id) as estado , s.p_user, s.p_user_pub, s.p_date, s.p_comments, s.p_body, s.p_likes, s.p_type, u.user_id, u.user_name, u.user_rango, r.rango_id, r.r_color, ad.adj_id, ad.pub_id, ad.a_title, ad.a_url, ad.a_img, ad.a_desc  FROM u_muro AS s LEFT JOIN u_miembros AS u ON s.p_user_pub = u.user_id LEFT JOIN u_rangos AS r ON r.rango_id = u.user_rango LEFT JOIN u_muro_adjuntos AS ad ON ad.pub_id = s.pub_id WHERE   u.user_activo = \'1\' AND u.user_baneado = \'0\' AND u.user_rango !=\'3\'  ORDER BY s.pub_id DESC LIMIT 5');
        if(!
$query) exit( show_error('Error al ejecutar la consulta de la línea '.__LINE__.' de '.__FILE__.'.''db') );
        
$data result_array($query);

        
//
        
return $data;
    }
    function 
lastEstados(){
         
$post db_exec('fetch_assoc'$query db_exec(array(__FILE____LINE__), 'query''SELECT pub_id, p_type FROM u_muro  ORDER BY pub_id DESC LIMIT 1'));
         return 
$post['pub_id'];
    }
    function 
lastPubLives(){
        global 
$tsCore;
        
$post db_exec('fetch_assoc'$query db_exec(array(__FILE____LINE__), 'query''SELECT (s.pub_id) as vell , s.p_user, s.p_user_pub, s.p_date, s.p_comments, s.p_body, s.p_likes, s.p_type, u.user_id, u.user_name, u.user_rango, r.rango_id, r.r_color, ad.adj_id, ad.pub_id, ad.a_title, ad.a_url, ad.a_img, ad.a_desc FROM u_muro AS s LEFT JOIN u_miembros AS u ON s.p_user_pub = u.user_id LEFT JOIN u_rangos AS r ON r.rango_id = u.user_rango LEFT JOIN u_muro_adjuntos AS ad ON ad.pub_id = s.pub_id WHERE u.user_activo = \'1\' AND u.user_baneado= \'0\' AND u.user_rango !=\'3\' ORDER BY s.pub_id DESC LIMIT 1'));
         return 
json_encode(array('pub_id' => $post['vell'], 'p_body' => $tsCore->parseBadWords($post['p_body']), 'user' => $post['user_name'], 'p_user_pub' => $post['p_user_pub'], 'p_user' => $post['p_user'], 'p_comments' => $post['p_comments'], 'p_likes' => $post['p_likes'], 'p_type' => $post['p_type'], 'user_id' => $post['user_id'],'user_rango' => $post['rango_id'],'r_color' => $post['r_color'], 'p_date' => 'Hace unos instantes','a_url' => $post['a_url'],'a_img' => $post['a_img'],'a_title' => $tsCore->parseBadWords($post['a_title']),'a_desc' => $post['a_desc']));
    }    
    function 
delEstados()
    {
        global 
$tsCore;
        
$estados $_POST['estados'];
        if(
db_exec('num_rows'db_exec(array(__FILE____LINE__), 'query''SELECT pub_id FROM u_muro WHERE pub_id = \'' .
            
$tsCore->setSecure($estados) . '\' LIMIT 1')))
        {
            if(
db_exec(array(__FILE____LINE__), 'query''DELETE FROM u_muro WHERE pub_id = \'' $tsCore->setSecure($estados) . '\''))
                return 
true;
        } else
            return 
'0: El estado no existe';
    } 

 
En posts.php  --> inc --> php --> posts.php

Buscar:    
// DO <= PARA EL MENU
        
$smarty->assign("tsDo",$_GET['do']); 

       
Debajo agregar:
$smarty->assign("tsUltshouts",$tsPosts->getLastShouts());
    
$smarty->assign("tsLastPubid",$tsPosts->lastEstados()); 


En ajax.posts.php --> inc --> php --> ajax --> ajax.posts.php

Buscar:    
'posts-last-comentarios' =>  array('n' => 0'p' => 'last-comentarios'), 


Debajo agregar:
'posts-eliminar-estado' => array('n' => 2'p' => ''), 


Buscar:    
case 'posts-last-comentarios':
            
//<--
                
$smarty->assign("tsComments",$tsPosts->getLastComentarios());
            
//-->
        
break; 


Debajo agregar:
case 'posts-pubid':
            
//<--
            
$vel $tsPosts->lastEstados();
            echo 
json_encode(array('vel' => $vel));
           
            
//-->
        
break;
        case 
'posts-estados':
            
//<--
                
echo $tsPosts->lastPubLives();
           
            
//-->
        
break;
        case 
'posts-eliminar-estado':
            
//<---
            
echo $tsPosts->delEstados();
            
//--->
        
break; 
    
       
En funciones.js --> themes --> default --> js --> funciones.js

Al final agregar:        
$(function(){
$(
'a > i.icon.compose.hastipsy').parent('a').click(function(e){
$(
'#compose-box').toggle();
});
});
function 
liveUpdate(update,type){
if(!
update){
    var 
last_shouts parseInt($('#last-shouts-id').text());
    $.
ajax({
        
type'GET',
        
urlglobal_data.url '/posts-pubid.php',
        
dataType'json',
        
success: function(h){
        if(
last_shouts h['vel']){
        
liveUpdate(1,'vel');
        }
        
        }
    });
}

if(
update && type == 'vel'){
$.
ajax({
        
type'POST',
        
urlglobal_data.url '/posts-estados.php',
        
datafalse,
        
dataType'json',
        
cachefalse,
        
success: function(h){
        
        if(
h['p_type']==1){pupid=1;}else{if(h['p_type']==2){pupid=2;}else{if(h['p_type']==3){pupid=3;}else{if(h['p_type']==4){pupid=4;}}}}
        switch(
pupid)
        {
         case 
1:
           var 
new_shouts '<ul class="ult-shouts"><li><div class="dush"><a class="ush hovercard" uid="'+h['user_id']+'" href="/perfil/'+h['user']+'" style="color:#'+h['r_color']+';">'+h['user']+'</a><span style="margin-right:5px;" class="floatR">'+h['p_date']+'</span></div><a href="/perfil/'+h['user']+'" ><img class="imgsh" alt="'+h['user']+'" src="/files/avatar/'+h['user_id']+'_50.jpg"></a><div class="body-sh">'+h['p_body']+'</div><div class="irpub"><a href="/perfil/'+h['user']+'/'+h['pub_id']+'">ver m&aacute;s</a></div></li></ul>';
         break;
         case 
2:
           var 
new_shouts '<ul class="ult-shouts"><li><div class="dush"><a class="ush hovercard" uid="'+h['user_id']+'" href="/perfil/'+h['user']+'" style="color:#'+h['r_color']+';">'+h['user']+'</a><span style="margin-right:5px;" class="floatR">'+h['p_date']+'</span></div><a href="/perfil/'+h['user']+'" ><img class="imgsh" alt="'+h['user']+'" src="/files/avatar/'+h['user_id']+'_50.jpg"></a><div class="body-sh">'+h['p_body']+'</div><div class="adj-shv"><a href="'+h['a_url']+'" target="_blank" alt="'+h['a_url']+'" ><img src="'+h['a_img']+'"></a></div><<div class="irpub"><a href="/perfil/'+h['user']+'/'+h['pub_id']+'">ver m&aacute;s</a></div></li></ul>';
         break;
         case 
3:
          var 
new_shouts '<ul class="ult-shouts"><li><div class="dush"><a class="ush hovercard" uid="'+h['user_id']+'" href="/perfil/'+h['user']+'" style="color:#'+h['r_color']+';">'+h['user']+'</a><span style="margin-right:5px;" class="floatR">'+h['p_date']+'</span></div><a href="/perfil/'+h['user']+'" ><img class="imgsh" alt="'+h['user']+'" src="/files/avatar/'+h['user_id']+'_50.jpg"></a><div class="body-sh">'+h['p_body']+'</div><div class="adj-shv"><h3><a rel="nofollow" target="_blank" style="color:#5687A8;"  href="'+h['a_url']+'">'+h['a_title']+'</a></h3><img width="16px" height="16px" src="Registrate o inicia tu sesión para ver este contenido['a_url']+'"> <a rel="nofollow" target="_blank"style="color:#5687A8;"  href="'+h['a_url']+'">'+h['a_url']+'</a></div><div class="irpub"><a href="/perfil/'+h['user']+'/'+h['pub_id']+'">ver m&aacute;s</a></div></li></ul>';
         
break;
         case 
4:
          var 
new_shouts '<ul class="ult-shouts"><li><div class="dush"><a class="ush hovercard" uid="'+h['user_id']+'" href="/perfil/'+h['user']+'" style="color:#'+h['r_color']+';">'+h['user']+'</a><span style="margin-right:5px;" class="floatR">'+h['p_date']+'</span></div><a href="/perfil/'+h['user']+'" ><img class="imgsh" alt="'+h['user']+'" src="/files/avatar/'+h['user_id']+'_50.jpg"></a><div class="body-sh">'+h['p_body']+'</div><div class="adj-shv"><iframe class="youtube-player" type="text/html" width="276" height="200" src="Registrate o inicia tu sesión para ver este contenido['a_url']+'" frameborder="0"></iframe><div style="margin-top:15px" class="videoDesc"><strong><a  href="Registrate o inicia tu sesión para ver este contenido['a_url']+'" target="_blank" class="a_blue">'+h['a_title']+'</a></strong><div style="color:#999;margin-top:5px">'+h['a_desc']+'</div></div></div><div class="irpub"><a href="/perfil/'+h['user']+'/'+h['pub_id']+'">ver m&aacute;s</a></div></li></ul>';
         break;
        }
        
        
        if(
parseInt($('#last-shouts-id').text()) != h['pub_id']){
        $(
'.last_commets_lives').prepend($(new_shouts).fadeIn('slow'));
        $(
'.last_commets_lives li:last').remove();
        $(
'#last-shouts-id').html(h['pub_id']);
        }
        
        }
});
}
}
var 
vell = {
estados : {
        
borrar:function(pub_idgew){
          if(!
gew){
            
mydialog.show();
            
            
mydialog.title('Borrar Estado');
            
            
mydialog.body('¿Quieres borrar el estado?');
            
            
mydialog.buttons(truetrue'S&iacute;'"vell.estados.borrar('" pub_id "', true)"truefalsetrue'No''close'truetrue);
            
            
mydialog.center();
            
        }else{
            
            $(
'#loading').fadeIn(250);
        
           $.
post(global_data.url '/posts-eliminar-estado.php''estados=' pub_id, function(a){

           
mydialog.center();
           
success:  if(a.charAt(0) == '1'location.href global_data.url               
      
});
     }
   },  
},


   
En perfil.js --> themes --> default --> js --> perfil.js

Buscar:
muro.stream.load('status',$('#stMain')); 

 
Reemplazar por:
$('.shout-box').html('<div class="shout-box-submit"><p><a title="Mi" href="/mi/">El shout fue enviado</a></p></div>');
                            
setTimeout(function(){
                            $(
'.shout-box').fadeOut('fast', function(){
                            $(
'.navitem').removeClass('monitor-notificaciones');
                            $(
'.shout-box-submit').hide();
                            $(
'.shout-box').show();
                            
//Limpio form
                            
$('#my-shout-body-menu').val('');
                            });
                            }, 
3000); 


En extras.css --> themes --> default --> extras.css

Al final agregar:
.bShv,.bShv.vGreen{padding:5px 10px;color:#fff}.tail,.vsh{position:absolute}#shout-beat-vell,ul.ult-shouts li{height:auto;margin-bottom:10px;overflow:hidden}.adj-shv,.imgsh,.irpub,ul.ult-shouts li{overflow:hidden}.bShv{font-size:12px!important;-moz-border-radius:3px;-webkit-border-radius:3px;font-weight:700;border-radius:3px;margin:0;line-height:1.5;cursor:pointer!important}.bShv.vGreen,.btsv{font-weight:700;font-size:12px}.bShv.vGreen{background:#65d43b;background:-moz-linear-gradient(top,#88e64f 0,#5ed037 100%);background:-webkit-gradient(linear,0 0,0 100%,from(#88e64f),to(#5ed037));-moz-box-shadow:inset 0 1px 0 0 #a3eb72,0 1px 2px 0 #b3b3b3;-webkit-box-shadow:inset 0 1px 0 0 #a3eb72,0 1px 2px 0 #b3b3b3;border-top:1px solid #6caf40;border-right:1px solid #53a32e;border-bottom:1px solid #3e9a20;border-left:1px solid #53a32e;text-align:center;text-shadow:0 -1px 0 #4aa322;-webkit-background-clip:padding-box}.btn.a,.btn_g.a{text-shadow:0 -1px 1px #3275bc}.bShv.vGreen:hover{background:#45b31d;background:-moz-linear-gradient(top,#78da40 0,#45b31d 100%);background:-webkit-gradient(linear,0 0,0 100%,from(#78da40),to(#45b31d));border-top:1px solid #59a62a;border-right:1px solid #59a62a;border-bottom:1px solid #438918;border-left:1px solid #59a62a;-moz-box-shadow:inset 0 1px 0 0 #a3eb72;-webkit-box-shadow:inset 0 1px 0 0 #a3eb72;cursor:pointer;-webkit-background-clip:padding-box;color:#fff}.bShv.vGreen:active{background:#32d335!important;border:1px solid #0e8e1e!important;border-bottom:1px solid #0e408e!important;-moz-box-shadow:inset 0 0 6px 3px #1ab928,0 1px 0 0 #fff!important;-webkit-box-shadow:inset 0 0 6px 3px #1ab928,0 1px 0 0 #fff!important;text-shadow:0 -1px 1px #26ad2b!important;-webkit-background-clip:padding-box!important;color:#fff!important}.btn.a.active,.btn.a:active,.btn_g.a:active{-moz-border-bottom-colors:none!important;-moz-border-image:none!important;-moz-border-left-colors:none!important;-moz-border-right-colors:none!important;-moz-border-top-colors:none!important}.btn_g.a:active,.btn_g.a:hover{border-style:solid!important;border-width:1px!important}.btn_g.a{border-color:#4081af #2e69a3 #20559a;color:#fff;background:#52a8e8;background:-moz-linear-gradient(top,#52a8e8 0,#377ad0 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#52a8e8),color-stop(100%,#377ad0));background:-webkit-linear-gradient(top,#52a8e8 0,#377ad0 100%);background:-o-linear-gradient(top,#52a8e8 0,#377ad0 100%);background:-ms-linear-gradient(top,#52a8e8 0,#377ad0 100%);background:linear-gradient(top,#52a8e8 0,#377ad0 100%);display:inline-block;cursor:pointer;box-shadow:0 1px 0 0 #ddd}.btn_g.a:hover{border-color:#2a73a6 #165899 #07428f!important;box-shadow:0 1px 0 0 #62b1e9 inset!important;text-shadow:0 -1px 1px #1d62ab!important;background:#3e9ee5;background:-moz-linear-gradient(top,#3e9ee5 0,#206bcb 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#3e9ee5),color-stop(100%,#206bcb));background:-webkit-linear-gradient(top,#3e9ee5 0,#206bcb 100%);background:-o-linear-gradient(top,#3e9ee5 0,#206bcb 100%);background:-ms-linear-gradient(top,#3e9ee5 0,#206bcb 100%);background:linear-gradient(top,#3e9ee5 0,#206bcb 100%)}.btn_g.a:active{background:#3282d3!important;border-color:#154c8c #154c8c #0e408e!important;box-shadow:0 0 6px 3px #1657b5 inset,0 1px 0 0 #fff!important;text-shadow:0 -1px 1px #2361a4!important;color:#fff!important}.muro{background:url('images/20shout.png') no-repeat;opacity:.3;padding-left:18px!important;padding:0 0 3px}.muro.fot{background-position:0 -1px}.btsv:hover .muro.fot{background-position:0 -21px;opacity:1}.muro.shu{background-position:-61px -1px}.btsv{display:block;padding:20px;text-shadow:0 1px 0 #eee;-webkit-background-clip:padding-box;color:#111;background:#e4e4e4;background:-moz-linear-gradient(top,#fcfcfc 0,#eee 100%);background:-webkit-gradient(linear,0 0,0 100%,from(#fcfcfc),to(#eee));border-top:1px solid #ccc;border-right:1px solid #c6c6c6;border-bottom:1px solid #aaa;border-left:1px solid #c6c6c6;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;-moz-box-shadow:inset 0 1px 0 0 #f5f5f5,0 1px 0 0 #ddd;-webkit-box-shadow:inset 0 1px 0 0 #f5f5f5,0 1px 0 0 #ddd}.rtvs,.tder h3{font-size:14px}.btsv span,.btsv span:hover{padding-left:22px;text-decoration:none!important}.btsv:active{background:#ccc!important;border:1px solid #999!important;-moz-box-shadow:inset 0 0 6px 3px #9b9b9b,0 1px 0 0 #fff!important;-webkit-box-shadow:inset 0 0 6px 3px #9b9b9b,0 1px 0 0 #fff!important;-webkit-background-clip:padding-box!important;color:#222!important}.btsv:hover .muro.shu{background-position:-61px -21px;opacity:1}.muro.vid{background-position:-20px 0}.btsv:hover .muro.vid{background-position:-20px -20px;opacity:1}.muro.enl{background-position:-40px -1px}.btsv:hover .muro.enl{background-position:-40px -21px;opacity:1}.tail{top:-7px;right:275px;z-index:1000;width:14px;height:25px;background:url('images/tail-up-soft.png') top left no-repeat!important}.vsh{margin-top:10px;background:#eee;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;margin-right:50px;display:none;z-index:300;width:300px;text-align:left;font-weight:400;color:#444;box-shadow:0 0 1px #999}.itextv,.rtvs{background:#fff}.btn,.shout-box-submit p a{display:inline-block;cursor:pointer}.btn,.shout-box-submit p,.tder h3,.ush{font-weight:700}.itextv{width:504px;padding:6px 9px 8px 8px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;border:1px solid #ccc;margin-right:2px}.rtvs{width:276px;padding:8px;font-family:Helvetica,Arial;color:#000;box-shadow:0 1px 1px #d3d3d3;-mox-box-shadow:0 1px 1px #D3D3D3;-webkit-box-shadow:0 1px 1px #d3d3d3;border-right:1px solid #c6c6c6;border-left:1px solid #c6c6c6;border-top:1px solid #cecece;border-bottom:1px solid #a4a4a4;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px}.dush,.irpub,.tder h3{background:url('images/box_titlebg2.gif') #eee}.irpub,.irpub a{color:#005ca5}.btn.a.active,.btn.a:active,.btn.a:hover{border-style:solid!important;border-width:1px!important}.btn{padding:5px 10px;margin:3px;border:1px solid;border-radius:4px;font-size:12px;font-family:Helvetica Neue,Helvetica,Arial;box-shadow:0 1px 0 0 #ddd}.btn.a{border-color:#4081af #2e69a3 #20559a;color:#fff;background:#52a8e8;background:-moz-linear-gradient(top,#52a8e8 0,#377ad0 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#52a8e8),color-stop(100%,#377ad0));background:-webkit-linear-gradient(top,#52a8e8 0,#377ad0 100%);background:-o-linear-gradient(top,#52a8e8 0,#377ad0 100%);background:-ms-linear-gradient(top,#52a8e8 0,#377ad0 100%);background:linear-gradient(top,#52a8e8 0,#377ad0 100%)}.btn.a:hover{border-color:#2a73a6 #165899 #07428f!important;box-shadow:0 1px 0 0 #62b1e9 inset!important;text-shadow:0 -1px 1px #1d62ab!important;background:#3e9ee5;background:-moz-linear-gradient(top,#3e9ee5 0,#206bcb 100%);background:-webkit-gradient(linear,left top,left bottom,color-stop(0,#3e9ee5),color-stop(100%,#206bcb));background:-webkit-linear-gradient(top,#3e9ee5 0,#206bcb 100%);background:-o-linear-gradient(top,#3e9ee5 0,#206bcb 100%);background:-ms-linear-gradient(top,#3e9ee5 0,#206bcb 100%);background:linear-gradient(top,#3e9ee5 0,#206bcb 100%);text-decoration:none!important}.btn.a.active,.btn.a:active{background:#3282d3!important;border-color:#154c8c #154c8c #0e408e!important;box-shadow:0 0 6px 3px #1657b5 inset,0 1px 0 0 #fff!important;text-shadow:0 -1px 1px #2361a4!important}.shout-box-submit p{margin:10px 0 15px;text-align:center}.shout-box-submit p a{color:#006595;text-decoration:none;font-weight:700;text-shadow:none;padding:0}.shout-box-submit a:focus,.shout-box-submit a:hover{color:#067cb4;text-decoration:underline!important}#shout-beat-vell{width:99%;}#shout-beat-vell h3,#shout-beat-vell h3 a{color:#5687a8}.irpub{padding:2px;width:99%;border-top:1px solid #ccc;border-radius:0 0 5px 5px;-moz-border-radius:0 0 5px 5px;-webkit-border-radius:0 0 5px 5px;-o-border-radius:0 0 5px 5px;text-align:center}.tder{margin-bottom:-13px;width:290px}.tder h3{color:#666;padding:5px 0 5px 10px;height:20px;border:1px solid #ccc;border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-o-border-radius:5px 5px 0 0}ul.ult-shouts li{display:block!important;border:1px solid #ccc;min-height:85px;border-radius:5px;-moz-border-radius:5px;-webkit-border-radius:5px;-o-border-radius:5px}.adj-shv a img,.imgsh{border:1px solid #ccc}.imgsh{width:48px;height:48px;padding:1px;float:left;margin:0 1px 1px 5px}.imgsh:hover{border:1px solid #0cf;transition:.5s linear;-webkit-transition:.5s linear;-moz-transition:.5s linear;-o-transition:.5s linear;border-radius:50%;-moz-border-radius:50%;-webkit-border-radius:50%;box-shadow:0 0 5px #0cf;-moz-box-shadow:0 0 5px #0cf;-webkit-box-shadow:0 0 5px #0cf}.ush{padding:3px 0 5px 5px}.dush{width:97%;height:15px;text-align:left;padding:2px 0 5px 10px;color:#999;border-bottom:1px solid #ccc;border-radius:5px 5px 0 0;-moz-border-radius:5px 5px 0 0;-webkit-border-radius:5px 5px 0 0;-o-border-radius:5px 5px 0 0;margin-bottom:5px}.body-sh{width:185px;height:auto;color:#999;float:right;margin:-55px 5px 5px;padding:5px;clear:both}.adj-shv{width:245px;height:auto;position:relative;margin:20px 5px 5px 6px;padding:5px 0;text-align:center}.adj-shv a img{max-width:278px;max-height:200px;height:auto;cursor:pointer;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;-o-border-radius:4px}.adj-shv a img:hover{border:1px solid #ccc;opacity:.7;background:#fff}
#webShouts .wMod-h{background-image:url(images/icons/megaphone.png)} 


En t.home.tpl --> themes --> default --> templates --> t.home.tpl

Buscar:
{include file='modules/m.home_stats.tpl'

 
Debajo agregar:
{include file='modules/v.shouts_recientes.tpl'


En head_menu.tpl --> themes --> default --> templates --> sections --> head_menu.tpl

Buscar:
<div class="userInfoLogin">
                  <
ul

                 
Debajo agregar:
{include file='modules/v.compartir_estados.tpl'
   
                  
                  
Y subir esta carpeta

Mega
Debes agradecer para ver el contenido...

Google Drive
Debes agradecer para ver el contenido...

Mediafire
Debes agradecer para ver el contenido...

Uptobox
Debes agradecer para ver el contenido...

4shared
Debes agradecer para ver el contenido...




Creditos: Debes agradecer para ver el contenido...
Responder


Compartir en:

Salto de foro:


Usuarios navegando en este tema: 1 invitado(s)