Hi Leighton
Please explain to me how to modify the Your Content area, I want to include a column that for the node ID (that links to the node).
Hi Leighton
Please explain to me how to modify the Your Content area, I want to include a column that for the node ID (that links to the node).
Brad,
Yes, give Views a try. You can set up the View so that it will appear on the User Account as a tab and get the user id as an argument from the url. Then you can remove the 'view own content' permission to hide the original content tab. Hope that helps!
-Leighton
Brad,
You will need to use the Views Custom Field (http://drupal.org/project/views_customfield) module for this, and put in the following snippet:
There are lots of other useful fields in the pp_node object.
Sincerely,
Leighton Whiting
It's possible that the $nid variable is not set. It's been a while since I've done this. I think if you include the node id field in the view and put it above the other fields in order, then it will be available like this:
Give that a try instead of just $nid
Sorry, I pasted it wrong. It is just $data->nid instead of $nid
-Leighton
Actions are a bit more complex, because they are dependant on the status of the pp_node. If it is active, it should show X action, etc.
Here is an example:
Hope that helps!
-Leighton
Be sure to also load the $pp_node before the switch statement, and also load the $plan and the $order too.
Example:
Hope that helps!
-Leighton
I don't know much about Node Convert, but if they have a callback url then it may be possible.
-Leighton

Doesn't the node title already link to the node? In Drupal 7 it would be easy to modify with the hook_page_alter, but for Drupal 6 there is no easy way to alter it.
Sincerely,
Leighton Whiting