OK, first I completely cannot remember all I've done along the way. Can you let me know what errors you are receiving and I can try and help?
One thing that needs to be changed in the timeslips.php file...since the profile page has completely been revamped since the last timeslips update, here's how I got the "details" link working correctly (it would cause an error).
Find this line of code in timeslips.php:
Code:
$details="<a href=\"member.php?$session[sessionurl]do=vehicledetails&userid=$userinfo[userid]\">Details</a>";
...and replace it with this:
Code:
$details="<a href=\"member.php?$session[sessionurl]u=$userinfo[userid]&tab=aboutme\">Details</a>";
This is because the "vehicle details" section of the profile got wiped out in the latest update. However, all of the info still exists in the "About Me" tab of a user's profile. Changing the link to point to the "About Me" tab nets the same effect.
My timeslips page (and php file) are majorly hacked from the base mod here. I added in user selectable vehicles so only certain vehicles could be added and a user is required to choose from that set. It makes it easier to group and sort by vehicles specific to our forum's topic.
If you have any questions, please feel free to ask. I may not be able to answer (or answer right away), but I'll take a look and see how your issue is working on my forum and try and point you in the right direction.