The status on signature of some members, with likes, trophies etc

somewhere in the script, something similar to

PHP:
$likes = $xml->total_likes;

should appear. This needs changing to

PHP:
$likes = $xml->like_count;

HOPEFULLY the script you're using is similar to mine ;)
 
somewhere in the script, something similar to

PHP:
$likes = $xml->total_likes;

should appear. This needs changing to

PHP:
$likes = $xml->like_count;

HOPEFULLY the script you're using is similar to mine ;)
If anyone else has troubles:

Find:
PHP:
$likes = $stats_xml->total_likes;

Replace with:

PHP:
$likes = $stats_xml->like_count;

Thanks for the help Disjunto. :)
 
Top Bottom