How do you add a custom Donate Now button for Tributes / Personal Fundraising fund pages?

Options

Hi folks...

I see this a lot... where the standard "Make a donation" button is replaced by a custom graphic Donate button on Tribute / Personal Fundraising pages. It seems one simply needs to swap out

<input type="submit" value="Make a Donation" class="Button" id="trib_donate" name="trib_donate" />

with something like

<input type="image" src="../images/content/pagebuilder/10479.gif" />

However, I'm not sure this is accessible / editable via the standard Admin tool. I might simply be overlooking it. Does anyone know how / where to edit this... or is this something that has to be done by Convio staff?

Thanks!!

Jon

Tagged:

Comments

  • Bump. Please?

  • M OConn:

    Bump. Please?

    There is nowhere in the Convio tool that one could swap out this button with an image, but you could certainly do so with JavaScript. Put something like this in the head of your page wrapper(s):



    ]x]x::
    <script type="text/javascript">
    addOnLoadHandler(function(){
    document.getElementById('trib_donate').type='image';
    document.getElementById('trib_donate').src='../images/content/pagebuilder/10479.gif';
    });
    </script>
    ::]]
  • Noah Cooper:

    There is nowhere in the Convio tool that one could swap out this button with an image, but you could certainly do so with JavaScript. Put something like this in the head of your page wrapper(s):



    ]x]x::
    <script type="text/javascript">
    addOnLoadHandler(function(){
    document.getElementById('trib_donate').type='image';
    document.getElementById('trib_donate').src='../images/content/pagebuilder/10479.gif';
    });
    </script>
    ::]]

    Could something similar be done for the "Champion center", "Fund Page", etc buttons along the top navigation bar of the Champion Center?

  • Robert Saunders:

    Could something similar be done for the "Champion center", "Fund Page", etc buttons along the top navigation bar of the Champion Center?

    You can actually do that right in the product, no need for such a workaround. If you edit the Personal Fundraising campaign and go to Configure Pages, on the Greeting Page you'll see you can upload an image instead of using text for those links.

Categories