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

Pages: 1 [2] 3 4 5 6
16
Thanks,
My request is for the other function.

On mouseover or click turn the image to black and white.

By google

Спасибо,
Мой запрос для других функций.

При наведении курсора мыши или щелкните свою очередь изображения в черно-белый.   :D

17
Hi,

Thanks,

I changed the code,but only show this for guests.

Random userpic images
 

This user has no picture on his profile
fer


 But ,the user have userpic.


Found a problem in the original code.
The name under the thumbnail does not match with the userpic

Thanks

18
Hi,

Thanks for this great mod.

A question about the random userpic
http://www.4homepages.de/forum/index.php?topic=6797.msg60282#msg60282

How I can show the members userpic to guests?Now only registered members can see the members user pic.

Thanks

19
Hi,

Thanks a lot.

 My fault!! You talk about step 1 and I not read more. :oops:

Works fine,

Thanks

20
Thanks,

Sorry the question.But how i can show the result in the home.html of the code from step1 :?

Code: [Select]
//--------------------------------------
//--- Random Userpic Images ------------
//--------------------------------------

$sql = "

SELECT DISTINCT ".get_user_table_field("", "user_id"). get_user_table_field(", ", "user_name"). get_user_table_field(", ", "user_level").", userpic
FROM ".USERS_TABLE."
WHERE ".get_user_table_field("", "user_level")." >= '".USER."'
ORDER BY RAND()
LIMIT 1

";

$result = $site_db->query($sql);

if (!$result) {

$userpic_img = $lang['no_random_userpic'];

} else {

while ($row = $site_db->fetch_array($result)) {

$userpic_img = ($config['userpic'] && @file_exists(ROOT_PATH."data/userpic/".$row['userpic']) && $user_info['user_level'] >= USER) ? "<a href=\"".$site_sess->url(ROOT_PATH."member.php?action=showprofile&amp;".URL_USER_ID."=".$row['user_id']."&user_name=".$row['user_name'])."\"><img src=\"".ROOT_PATH."data/userpic/".$row['userpic']."\" width=\"".$config['userpic_width']."\" height=\"".$config['userpic_height']."\" border=\"0\"></a>" : $lang['no_random_userpic'];
$user_name = ($config['userpic'] && @file_exists(ROOT_PATH."data/userpic/".$row['userpic']) && $user_info['user_level'] >= USER) ? "<br /><a href=\"".$site_sess->url(ROOT_PATH."member.php?action=showprofile&amp;".URL_USER_ID."=".$row['user_id']."&user_name=".$row['user_name'])."\">".$row['user_name']."</a>" : "<br /><br /><a href=\"".$site_sess->url(ROOT_PATH."member.php?action=showprofile&amp;".URL_USER_ID."=".$row['user_id']."&user_name=".$row['user_name'])."\">".$row['user_name']."</a>";

} ###### End of while statement.

if ($user_info['user_level'] >= USER) {

$site_template->register_vars(array(
"user_name" => $user_name,
"userpic_img" => $userpic_img,
"lang_no_random_userpic" => $lang['no_random_userpic'],
"lang_random_userpic_images_title" => $lang['random_userpic_images_title']
));
} ###### End of if statement.
} ###### End of if statement.

unset ($userpic_img);
unset ($user_name);


21
Thanks my friend!

The link works nice.

The userpic is from the mod of Vano  [MOD] Member personal photo v1.1.2 by V@no (2008-12-11)
 
http://www.4homepages.de/forum/index.php?topic=6797.msg29716#msg29716

22
Hi,


Someone know how this work! :?
If click or onmouseover we desaturate the image.

You can see here http://www.photochart.com/photo_8291_Butterfly.html.

Thanks

23
Thanks for this mod :D

I possible show the user pic above the name and work with a link for profile of the user.

Thanks

24
Mods & Plugins (Requests & Discussions) / Re: Cumulos cloud tags
« on: September 28, 2010, 10:25:23 AM »
Hi Ivan

Thanks!

I have this Mod in my site, but don't work like cumulos rotator cloud. :?


25
Mods & Plugins (Requests & Discussions) / Cumulos cloud tags
« on: September 28, 2010, 09:44:51 AM »
Hi,

Is possible make this to work whit 4images.

http://wordpress.org/extend/plugins/wp-cumulus/faq/

This is a elegant way to show the tags.

Sorry the poor english

26
Mods & Plugins (Requests & Discussions) / Re: Share on facebook
« on: August 13, 2010, 10:05:15 PM »
Hi,

Thanks for your help!

I i'l try this!

i have test site here www.fotosapretoebranco.com and I don't have any problem to share to facebook with this template. :roll:

27
Mods & Plugins (Requests & Discussions) / Share on facebook
« on: April 14, 2010, 09:39:44 AM »
Hi,

I have a problem to share photos on facebook.

I use the addthis button and works but only share the link...don't show the thumbnail. 8O

Can help me whit that.

Thanks
www.globalfoto.net

28
I'm sorry for the long delay. Here is the fix for the problem you been having. I also updated the original scripting. Have fun.

Open member.php

Find
Code: [Select]
 elseif ($afg == "false")
  {
    $id = $_GET['user_id'];
  }
    if ($user_info['user_level'] == GUEST)
    {
       show_error_page($lang['no_permission']);
    exit;
  }

Replace it with:

Code: [Select]
 elseif ($afg == "false")
  {
    $id = $_GET['user_id'];
  }

Hope this helps everyone out. Thank you for your patients.

Thanks al lot for your work!!!

Works very fine!!!

Thanks

29
Thanks a lot Vano,

I will try this later.
I have  a MOD ajax for voting,and I don't no if have same problems with the configuration. :D

Use this one http://www.4homepages.de/forum/index.php?topic=6157.0 and for now works fine.But need disable de ajax rating.

Thanks again

Pages: 1 [2] 3 4 5 6