• Hello, sorry to ask again, but how can I make a separate page of a user account (any user has created 3 entries that are displayed in the General table where 1000 of records) how to make a separate page of the output record that the user that added so each. I read your article, where it says about the shortcode [pdb_list filter=”user_login=’ . $current_user – >user_login . ‘”] in fact, I have no Login, just a display name in the fields anywhere, so I want to do it for the display name.
    2) I would like to, on this private page of the user, where all his records are displayed was a field where this record displays ID, it would be more convenient in the event that if he wants to edit, inexperienced user will be hard to point to the field with the link, understand that the end of the link it is ID to solve this problem I would like to display it this way, but this field does not have a “Meta-KEU”, as well as the level of user access, How?

    Once again I apologize, I “I guess You tired of” persistent complex issues, but it’s the last thing left to finish and without your help I can not cope…

    • This topic was modified 8 years, 1 month ago by vipman.
    • This topic was modified 8 years, 1 month ago by vipman.
Viewing 5 replies - 1 through 5 (of 5 total)
  • Plugin Author Roland Barker

    (@xnau)

    If you use the “display name” value of a user, it will work most of the time, but it can fail because they can change this at any time.

    For your user edit link, you have to do this in your custom template. Set up the PDb_Template class, then use that to generate your URL:

    <?php
    $pdb_record = new PDb_Template( $this );
    $edit_url = $pdb_record->get_edit_link();
    ?>

    You can only do this in a Participants Database custom template, it will not work anywhere else.

    Thread Starter vipman

    (@vipman)

    Okay, okay.
    And if I have a field group that has 10 rows, I want to display 5 rows from that group on 1 page, and the rest on another page, how do I do it? and whether the ID of the column to bring to the table, not to direct the link?

    Plugin Author Roland Barker

    (@xnau)

    You can use the “fields” attribute in the shortcode to determine which fields are shown…for example:

    [pdb_single fields=”first_name,last_name”]

    Then put the other fields on the next page.

    Thread Starter vipman

    (@vipman)

    thank you

    • This reply was modified 8 years, 1 month ago by vipman.
    Thread Starter vipman

    (@vipman)

    It is a pity that the shortcode you can customize the output of individual records, and your not.

Viewing 5 replies - 1 through 5 (of 5 total)

The topic ‘My record’ is closed to new replies.