• 4
  • 12 RepliesReplies
  • 65009 ReadTimes Read
  • 29 PointsPoints

Topic: Profile Views V2

Usuario: 4kstore
Rango: Moderador Global
Mensajes: 4916
Points: 8111
Mi web: http://www.smfsimple.com
Perfil: View Profile
Pais:
ar
Profile Views V2
September 19, 2013 - 03:35 15:35
Link al Archivo



Profile Views V2
Developed by 4kstore for SMFSimple.com
SMF 2.0.X



El soporte oficial de los desarrolladores de nuestros mods lo encontraras en SMFSimple.com



Descripcion:
Crea una lista en cada perfil de todos los usuarios mostrando quienes visitaron su perfil.

Description:
Create a list in each profile showing all users who visited your profile.



Screenshots | Imágenes





Language Support | Lenguajes Soportados
English - Español

You do not have permission to give points
point 29 Points

Users who gave points in this topic » gangmusic (1 Pts) » Skaty (3 Pts) » DIBILO (20 Pts) » kizaru74 (3 Pts) » gator (1 Pts) » xLx (1 Pts) 

Usuario: 4kstore
Rango: Moderador Global
Mensajes: 4916
Points: 8111
Mi web: http://www.smfsimple.com
Perfil: View Profile
Pais:
ar
Re:Profile Views V2
Reply #1 September 19, 2013 - 03:41 15:41
Lo instale aca en smfsimple para que puedan ver como queda, lo dejare unos dias solamente.
Saludos

Usuario: aeiou15
Rango: Nuevo Usuario
Mensajes: 41
Points: 3
Perfil: View Profile
Pais:
ar
Re:Profile Views V2
Reply #2 September 19, 2013 - 05:31 17:31
muy bueno...  :)

Usuario: EduardO
Rango: Nuevo Usuario
Mensajes: 875
Points: 15
Mi web: http://www.gamerzperu.com/
Perfil: View Profile
Pais:
pe
Re:Profile Views V2
Reply #3 September 19, 2013 - 05:44 17:44
Buenisimo bro! Saludos!

no avatar
Usuario: Zeum
Rango: Recién Llegado
Mensajes: 3
Points: 0
Mi web: http://pulsiveforums.net
Perfil: View Profile
Pais:
us
Re:Profile Views V2
Reply #4 September 19, 2013 - 10:58 22:58
Can't figure out how to buy this :/

Usuario: 4kstore
Rango: Moderador Global
Mensajes: 4916
Points: 8111
Mi web: http://www.smfsimple.com
Perfil: View Profile
Pais:
ar
Re:Profile Views V2
Reply #5 September 19, 2013 - 11:07 23:07

no avatar
Usuario: Skaty
Rango: Nuevo Usuario
Mensajes: 16
Points: 1
Mi web: www.psvitaturkiye.com/forum
Perfil: View Profile
Pais:
tr
Re:Profile Views V2
Reply #6 September 20, 2013 - 05:55 17:55
Can we add an average thing for this mod ? I want to use this for to review games but the user should could see the average of it.

Usuario: 4kstore
Rango: Moderador Global
Mensajes: 4916
Points: 8111
Mi web: http://www.smfsimple.com
Perfil: View Profile
Pais:
ar
Re:Profile Views V2
Reply #7 September 20, 2013 - 06:22 18:22
average? Sorry I can't understand what you said, maybe with one example...

no avatar
Usuario: Zeum
Rango: Recién Llegado
Mensajes: 3
Points: 0
Mi web: http://pulsiveforums.net
Perfil: View Profile
Pais:
us
Re:Profile Views V2
Reply #8 September 20, 2013 - 07:14 19:14
Just got it but can't install... Has a file error :L ill try and fix it later, oh well.

Usuario: 4kstore
Rango: Moderador Global
Mensajes: 4916
Points: 8111
Mi web: http://www.smfsimple.com
Perfil: View Profile
Pais:
ar
Re:Profile Views V2
Reply #9 September 20, 2013 - 07:16 19:16
can you tell me th error?

no avatar
Usuario: Zeum
Rango: Recién Llegado
Mensajes: 3
Points: 0
Mi web: http://pulsiveforums.net
Perfil: View Profile
Pais:
us
Re:Profile Views V2
Reply #10 September 21, 2013 - 01:15 13:15
Code Find:
Code: [Select]
echo '
</div>
<span class="botslice"><span></span></span>
</div>
</div>
<div id="detailedinfo">
<div class="windowbg2">
<span class="topslice"><span></span></span>
<div class="content">
<dl>';

Code Replace:
Code: [Select]
echo '
</div>
<span class="botslice"><span></span></span>
</div>';

//mod Profile views
if (!empty($context['pv_mod']))
{
echo'
<div class="windowbg">
<div class="cat_bar">
<h3 class="catbg">
<span class="ie6_header floatleft"><img src="', $settings['images_url'], '/icons/login.gif" alt="" class="icon" />', $txt['pvm_title_log'], '</span>
</h3>
</div>
<span class="topslice"><span></span></span>
<div class="content flow_auto" style="max-height:',!empty($modSettings['pvm_height']) ? $modSettings['pvm_height'] : '100' ,'px;">';

foreach ($context['pv_mod'] as $pv)
{
if (!empty($modSettings['pvm_show_avatar']))
echo '
<div class="pvm_avatar">
', $pv['avatar'],'
</div>';

echo '
<div class="pvm_info">';
if (!empty($pv['id_member_visit']))
echo '<a href="', $scripturl, '?action=profile;u=', $pv['id_member_visit'],'" class="pvm_name" style="color:'.$pv['mg_color'].'">', $pv['name'],'</a><br />';

else
echo $pv['name'],'<br />';

if (!empty($pv['last_visit']))
echo' ', $pv['last_visit'],'<br />';

if (!empty($pv['total_visits']))
echo' ', $txt['pvm_visits'],' ', $pv['total_visits'],'';

echo '
</div>
';
}

echo'

</div>
<span class="botslice"><span></span></span>
</div>';
}
//END

echo'
</div>

<div id="detailedinfo">
<div class="windowbg2">
<span class="topslice"><span></span></span>
<div class="content">
<dl>';

Usuario: 4kstore
Rango: Moderador Global
Mensajes: 4916
Points: 8111
Mi web: http://www.smfsimple.com
Perfil: View Profile
Pais:
ar
Re:Profile Views V2
Reply #11 September 21, 2013 - 02:01 14:01
Please, create a new topic in the support section: http://www.smfsimple.com/index.php?action=soporte
This is only a demostration topic of the mod

no avatar
Usuario: xLx
Rango: Recién Llegado
Mensajes: 1
Points: 0
Mi web: http://www.elrincondelgif.hol.es/index.php
Perfil: View Profile
Pais:
es
Re:Profile Views V2
Reply #12 May 31, 2014 - 10:23 10:23
muchas gracias  ;D

 

TAGS



Subject Replies
Mods SMFSimple Started by 4kstore 16 Replies
15056 Views
Mods SMFSimple Started by 4kstore 4 Replies
15127 Views
Mods SMFSimple Started by 4kstore 11 Replies
11177 Views
Mods SMFSimple Started by DIBILO 9 Replies
9927 Views
Mods SMFSimple Started by 4kstore 16 Replies
86310 Views
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