Hiding Participation Center?

Options

Hello,


  I have been unable to find how to remove/hide Participation Center links on the donation/registration receipt page and at the top of the page after a user logs in.  Can anyone advise or point me in the right direction?


Thanks

Tagged:

Comments

  • I believe there is a 'This participant type involves fundraising' setting in each Part Type setup that might handle this without hiding things with CSS.
  • Brian Mucha:

    I believe there is a 'This participant type involves fundraising' setting in each Part Type setup that might handle this without hiding things with CSS.

    What Brian is refering to is on the first step of defining a participation type within a TeamRaiser Event/Blueprint:

     
    5. Fundraising Enabled:


    Determines if these participants will be raising money for this TeamRaiser event and have access to fundraising tools, like the Participant Center (Note: The Fundraising field itself will always display on registration forms, but any goal entered in the field will be ignored if this option is not enabled.)




  • Thank you for your input. 


    I have been able to hide/remove a lot of the fundraising options and particpiation center links through disabeling fundraising as described and some code editing but the two places that I can't seem to find are at the top of the screen after someone logs in and the giant ugly buttons after someone has registered.  (I'm tempeted to just change the text from "ACCESS YOUR PARTICIPANT CENTER" to "This is a big ugly box" ... no one would ever click on a big ugly box right?

    94c6edfd5547753b50edc6dff431e1d3-huge-ac
  • Use the developer tools to find the Id for that "big ugly box" or try:
    #part_ctr_container {display:none;}

     

  • Sara Hoffman:

    Use the developer tools to find the Id for that "big ugly box" or try:
    #part_ctr_container {display:none;}

     

    Sadly, Sara's option (and others) have not worked to hide the button from the TY receipt.  I'm using TR as a non-fundraising event page (the Event module - we won't use). I've gotten around much of the TR function with a skin for the outside and all of the FR options turned off.  However I cannot seem to get the proper coding (or perhaps where to put it) to make the YOUR PARTICIPANT CENTER button and lines above it hidden. 


    I've put the code on the TY page's custom code (12/a/1); I've tried these two options and neither have worked:

    div.responsive div.part-center-container,
    div.responsive a#part_ctr_container_step {
        display: none;
    }

    and I've tried this

    <style type=”text/css”>
         #fr_thanks_page .part-center-container {display:none;}
    </style>


    What code (exactly) worked for you and on what page, etc.  - unfortunately I'm not a programmer, so I'm doing this in jigsaw puzzle fashion.

     

  • Hi Jennifer -


    Adding a <style> block to the Customize Pages > Thank You page is a good place to start.  


    When the Thank You page renders, the following code block is what we're attending to squish/hide. Highlighted in yellow #part_ctr_container
    088ad092be87177ee482516bf9332639-huge-bb


    You should be able to hide it with any of the following code snippets from the Thank You Page HTML Area (TeamRaiser List > Your Event Name > Thank You):

     

    <style>
    #part_ctr_container {display:none} // hides Access your participant center
    span#part_ctr_container {display:none}
    // hides Access your participant center
    </style>

    If you have a link to the page, we can get more specific.
  • Sara Hoffman:

    Hi Jennifer -


    Adding a <style> block to the Customize Pages > Thank You page is a good place to start.  


    When the Thank You page renders, the following code block is what we're attending to squish/hide. Highlighted in yellow #part_ctr_container
    088ad092be87177ee482516bf9332639-huge-bb


    You should be able to hide it with any of the following code snippets from the Thank You Page HTML Area (TeamRaiser List > Your Event Name > Thank You):

     


    <style>
    #part_ctr_container {display:none} // hides Access your participant center
    span#part_ctr_container {display:none}
    // hides Access your participant center
    </style>

    If you have a link to the page, we can get more specific.

     

    NEARLY THERE!  It got rid of the first "ugly box" but not the second and not the text: "Start fundraising today with your Participant Center!"


    I tried adding the snippet 2xs and that didn't do anything. Only the first box is gone, not both.  Here is the link to the page:



    https://secure3.convio.net/akdn/admin/FriendraiserPreview?hash=3a338c63&preview=true&fr_id=1230&pg=rthanks

  • Jennifer Castellanos-Graham:

    Sara Hoffman:

    Hi Jennifer -


    Adding a <style> block to the Customize Pages > Thank You page is a good place to start.  


    When the Thank You page renders, the following code block is what we're attending to squish/hide. Highlighted in yellow #part_ctr_container
    088ad092be87177ee482516bf9332639-huge-bb


    You should be able to hide it with any of the following code snippets from the Thank You Page HTML Area (TeamRaiser List > Your Event Name > Thank You):

     


    <style>
    #part_ctr_container {display:none} // hides Access your participant center
    span#part_ctr_container {display:none}
    // hides Access your participant center
    </style>

    If you have a link to the page, we can get more specific.

     

    NEARLY THERE!  It got rid of the first "ugly box" but not the second and not the text: "Start fundraising today with your Participant Center!"


    I tried adding the snippet 2xs and that didn't do anything. Only the first box is gone, not both.  Here is the link to the page:



    https://secure3.convio.net/akdn/admin/FriendraiserPreview?hash=3a338c63&preview=true&fr_id=1230&pg=rthanks




    Ok. using additional coding I've been able to get 1 box gone and the text, but not second box.


    <style>

    #part_ctr_container {display:none} // hides Access your participant center

    span#part_ctr_container {display:none} // hides Access your participant center

    </style>


    <style>

    #part_center_link_title {display:none}

    </style>


     

     

  • Jennifer Castellanos-Graham:


    Ureka! Thank you Sara - you gave me the stepping stone to figure this thing out.  Final code to get ride of BOTH boxes AND text:


    <style>

    #part_ctr_container {display:none} // hides Access your participant center

    span#part_ctr_container {display:none} // hides Access your participant center

    </style>


    <style>

    #part_center_link_title {display:none}

    </style>


    <style>

    #part_ctr_container_step {display:none} // hides step-button next-step

    span#part_ctr_container_step {display:none} // hides step-button next-step

    </style>

    Jennifer Castellanos-Graham:

    Sara Hoffman:

    Hi Jennifer -


    Adding a <style> block to the Customize Pages > Thank You page is a good place to start.  


    When the Thank You page renders, the following code block is what we're attending to squish/hide. Highlighted in yellow #part_ctr_container
    088ad092be87177ee482516bf9332639-huge-bb


    You should be able to hide it with any of the following code snippets from the Thank You Page HTML Area (TeamRaiser List > Your Event Name > Thank You):

     


    <style>
    #part_ctr_container {display:none} // hides Access your participant center
    span#part_ctr_container {display:none}
    // hides Access your participant center
    </style>

    If you have a link to the page, we can get more specific.

     

    NEARLY THERE!  It got rid of the first "ugly box" but not the second and not the text: "Start fundraising today with your Participant Center!"


    I tried adding the snippet 2xs and that didn't do anything. Only the first box is gone, not both.  Here is the link to the page:



    https://secure3.convio.net/akdn/admin/FriendraiserPreview?hash=3a338c63&preview=true&fr_id=1230&pg=rthanks




    Ok. using additional coding I've been able to get 1 box gone and the text, but not second box.


    <style>

    #part_ctr_container {display:none} // hides Access your participant center

    span#part_ctr_container {display:none} // hides Access your participant center

    </style>


    <style>

    #part_center_link_title {display:none}

    </style>


     

     

     

     

  • Hi Jennifer - 


    Glad to hear it. You can simplify the code to the following:

    #part_ctr_container, span#part_ctr_container, #part_center_link_title, #part_ctr_container_step { display: none } // hides access participant center, title and next step buttons
    This way you're only making one <style> tag.

    When I worked at Convio, we learned the hard way that most browsers will only render 25 <style> tags on a page. 

Categories