• Resolved derfjonny

    (@derfjonny)


    My site http://www.jonnytestlab.com

    Here is my problem I have the Processing Tracking page and the Applicant Tracking page that both allow signups. They work fine.

    The Applicant Results page displays fine.

    Here is the problem

    The SBIR Results Tracking page and STTR Results Tracking page are not displaying properly. There are two problems.
    1. I have checked the field names in pdb_signup against the database field name and they are correct, but the contact_infomation_email and type fields are not displayed.
    2. The next issue is that how do i get the SBIR Results page only shows records with the type SBIR and the STTR Results page only shows records with the type STTR. I tried
    [pdb_list fields=”funding_cycle,contact_infomation_name,contact_infomation_phone,contact_infomation_email,department,type=”SBIR””] but that did not seem to work, maybe because the field is not displaying. I am not sure I am new to WordPress

    Below is code from my pages for reference

    Process Tracking page
    [pdb_signup fields=”funding_cycle,contact_infomation_name,contact_infomation_phone,contact_infomation_email, department, type”]

    Applicant Tracking page
    [pdb_signup fields=”applicant_first_name,applicant_last_name,idea_or_solution,applicant_phone, applicant_email,applicant_phase,applicant_type,notes”]

    Applicants Results page
    [pdb_list fields=”applicant_first_name,applicant_last_name,idea_or_solution,applicant_phone, applicant_email,applicant_phase,applicant_type,notes”]

    STTR Results page
    [pdb_list fields=”funding_cycle,contact_infomation_name,contact_infomation_phone,contact_infomation_email,department,type”]

    SBIR Results page
    [pdb_list fields=”funding_cycle,contact_infomation_name,contact_infomation_phone,contact_infomation_email,department,type”]

    https://wordpress.org/plugins/participants-database/

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author xnau webdesign

    (@xnau)

    You just need to take a closer look at the docs, check out instructions for the “filter” attribute.. You have the right idea, but your syntax is wrong.

    Try something like this:

    [pdb_list fields="funding_cycle,contact_infomation_name,contact_infomation_phone,contact_infomation_email,department,type" filter="type=SBIR"]

    Thread Starter derfjonny

    (@derfjonny)

    Thank you for your response I will try that to fix the filter, but first how do I solve the following issue first?

    I have checked the field names in pdb_list against the database field name and they are correct, but the contact_infomation_email and type fields are not displayed on the SBIR Results page and STTR results page

    Plugin Author xnau webdesign

    (@xnau)

    Perhaps they are misspelled?

    Thread Starter derfjonny

    (@derfjonny)

    Sorry it took so long answering back I just got back into town. I have triple checked and they are spelled right I even copied and pasted the names. I cannot figure this out. Again thank you for your time helping me.

    Plugin Author xnau webdesign

    (@xnau)

    well, it’s just that your have the word “infomation” in your shortcode, which might be a misspelling.

    Thread Starter derfjonny

    (@derfjonny)

    Yeah I noticed it after I had typed it and added info. I just cannot figure out why the type and the contact_infomation_email fields do not show.
    [pdb_list fields=”funding_cycle,contact_infomation_name,contact_infomation_phone,contact_infomation_email,department,type“]

    SBIR Results page

    Plugin Author xnau webdesign

    (@xnau)

    Oh, I see… they’re hidden inside the container. You need to make the containing element (usually a div that wraps the table) larger so the full width of the list can be seen. Also, you have it set to “overflow: hidden” which does not allow a scroll to happen.

    Thread Starter derfjonny

    (@derfjonny)

    Thank you for your help I was up early this morning and messed around with it and copied and pasted from a different page, and then changed the field names to match mine. The surprising thing is it worked, it must of been some minor typing issue. Again thank you for your help. The problem has been solved

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Help with pdp_signup’ is closed to new replies.