Hide the team roster on a team fundraising page?

Options

Sounds crazy but we have four homes of girls that our ministry helps and each home has formed a team.  For security reasons, we do not want the list of girls with first and last names to appear on that team page.  Is there a way to hide the roster on the team fundraising page?

 

If not, any suggestions?

Tagged:

Comments

  • Kent Gilliam
    Kent Gilliam Blackbaud Employee
    Ancient Membership 2500 Comments 100 Likes Name Dropper

    Hi Tracy,

     

    I have an idea but I'm not sure if it will work. What is the team name that needs their page tweaked?

     

    Kent

  • Kent Gilliam:

    Hi Tracy,

     

    I have an idea but I'm not sure if it will work. What is the team name that needs their page tweaked?

     

    Kent

    Hey Kent, here's the page:

     

    http://mmoa.convio.net/site/TR/Run/RunforMercy?team_id=6130&pg=team&fr_id=1580

     

    If your idea doesn't work, we may just move to using last initial for the girls. Thanks so much!

  • Tracy Brothers:

    Hey Kent, here's the page:

     

    http://mmoa.convio.net/site/TR/Run/RunforMercy?team_id=6130&pg=team&fr_id=1580

     

    If your idea doesn't work, we may just move to using last initial for the girls. Thanks so much!

    You know what?  Thanks so much Kent, but I think we are going to go with first name and last initial so donors can still find their girl on the team page, but their names are not advertised to the whole world.

  • Kent Gilliam
    Kent Gilliam Blackbaud Employee
    Ancient Membership 2500 Comments 100 Likes Name Dropper
    Tracy Brothers:

    You know what?  Thanks so much Kent, but I think we are going to go with first name and last initial so donors can still find their girl on the team page, but their names are not advertised to the whole world.

    I can make that disappear. It will take some conditional coding to render a style change when that page is displayed. If you want that we can build that conditional for you.
  • Kent Gilliam:
    I can make that disappear. It will take some conditional coding to render a style change when that page is displayed. If you want that we can build that conditional for you.

    Hi All,

     

    If in case hiding the roster table approach will still be needed in future, as Kent has stated it could be made hidden from the  page through the use of that conditionalized CSS. 

     

    One way (there are many varieties thus not limited to these steps) to do that :

     

    Put the following bolded snippets below the associated Page Wrapper at  #2. Meta Tags > Additional HTML Tags for HEAD Element:

     

    Note #1: if you want to target TeamRaiser type of page as identified by the S4 tag (TR page is usually 26)

     

    [[?x26x::x[[S4]]x::

    <style>

    table.tr_roster{

    display:none;

    }

    </style>

    ::]]

     

    or

     

    Note #2 if you want to target only for that specific TeamRaiser ID (fr_id)  Note (that 1580 is the fr_id of that page within the listed URL above on previous thread)

     

    [[?x1580x::x[[S334:fr_id]]x::

    <style>

    table.tr_roster{

    display:none;

    }

    </style>

    ::]]

     


    To further specifically target some TR pages and not all we can also nest the two conditionals or even use the slightly more advanced one "Double Binding" them

     

    Additionally on top of this, we could  also set personal pages for these participants as private if I recall from the Convio Administration under that TeamRaiser Administration by clicking on "Make Private" button while viewing each individual Registration Information so that they are not publicly advertised / available.

  • Kent Gilliam
    Kent Gilliam Blackbaud Employee
    Ancient Membership 2500 Comments 100 Likes Name Dropper
    Daniel Hartanto:

    Hi All,

     

    If in case hiding the roster table approach will still be needed in future, as Kent has stated it could be made hidden from the  page through the use of that conditionalized CSS. 

     

    One way (there are many varieties thus not limited to these steps) to do that :

     

    Put the following bolded snippets below the associated Page Wrapper at  #2. Meta Tags > Additional HTML Tags for HEAD Element:

     

    Note #1: if you want to target TeamRaiser type of page as identified by the S4 tag (TR page is usually 26)

     

    [[?x26x::x[[S4]]x::

    <style>

    table.tr_roster{

    display:none;

    }

    </style>

    ::]]

     

    or

     

    Note #2 if you want to target only for that specific TeamRaiser ID (fr_id)  Note (that 1580 is the fr_id of that page within the listed URL above on previous thread)

     

    [[?x1580x::x[[S334:fr_id]]x::

    <style>

    table.tr_roster{

    display:none;

    }

    </style>

    ::]]

     


    To further specifically target some TR pages and not all we can also nest the two conditionals or even use the slightly more advanced one "Double Binding" them

     

    Additionally on top of this, we could  also set personal pages for these participants as private if I recall from the Convio Administration under that TeamRaiser Administration by clicking on "Make Private" button while viewing each individual Registration Information so that they are not publicly advertised / available.

    Big kudos Daniel!!!! Thanks for grabbing this one by the horns and contributing some great content!!!! 

     

    Kent

  • Daniel Hartanto:

    Hi All,

     

    If in case hiding the roster table approach will still be needed in future, as Kent has stated it could be made hidden from the  page through the use of that conditionalized CSS. 

     

    One way (there are many varieties thus not limited to these steps) to do that :

     

    Put the following bolded snippets below the associated Page Wrapper at  #2. Meta Tags > Additional HTML Tags for HEAD Element:

     

    Note #1: if you want to target TeamRaiser type of page as identified by the S4 tag (TR page is usually 26)

     

    [[?x26x::x[[S4]]x::

    <style>

    table.tr_roster{

    display:none;

    }

    </style>

    ::]]

     

    or

     

    Note #2 if you want to target only for that specific TeamRaiser ID (fr_id)  Note (that 1580 is the fr_id of that page within the listed URL above on previous thread)

     

    [[?x1580x::x[[S334:fr_id]]x::

    <style>

    table.tr_roster{

    display:none;

    }

    </style>

    ::]]

     


    To further specifically target some TR pages and not all we can also nest the two conditionals or even use the slightly more advanced one "Double Binding" them

     

    Additionally on top of this, we could  also set personal pages for these participants as private if I recall from the Convio Administration under that TeamRaiser Administration by clicking on "Make Private" button while viewing each individual Registration Information so that they are not publicly advertised / available.

    Thank you so much!  This is all very helpful!  I appreciate the info.

  • Kent Gilliam:

    Big kudos Daniel!!!! Thanks for grabbing this one by the horns and contributing some great content!!!! 

     

    Kent

    @Kent:

    Thank you Kent ! learned a lot about Convio from visiting this forum community myself thus wanted to return the favor by passing on the knowledge to others. Great work on proactively moderating our community Kent, thus kudos to you and the rest of the Blackbaud folks here !

     

    @Tracy:

    You are always welcome -- feel free to let us know if you have any further questions on this and looking forward to hear back more about what's new you might be stumbling upon working with Convio CRM that otherwise I or the rest might yet not be aware of.

  • Daniel Hartanto:

    @Kent:

    Thank you Kent ! learned a lot about Convio from visiting this forum community myself thus wanted to return the favor by passing on the knowledge to others. Great work on proactively moderating our community Kent, thus kudos to you and the rest of the Blackbaud folks here !

     

    @Tracy:

    You are always welcome -- feel free to let us know if you have any further questions on this and looking forward to hear back more about what's new you might be stumbling upon working with Convio CRM that otherwise I or the rest might yet not be aware of.

    You can set the Participant Type to display Screen Name rather than First and Last name.

     

    b. Select Type OptionsThis is the current page. This is an additional configuration option under the current step. > 6. Participant Search and Display Options

     

    http://help.convio.net/site/PageServer?pagename=Admin_TeamRaiser_TellMeMore_NameOptions

     

Categories