Skip to content

Instantly share code, notes, and snippets.

@ricealexander
Last active June 8, 2021 03:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ricealexander/59c5f06d000e3d0efdeb73a1958d4d3a to your computer and use it in GitHub Desktop.
Save ricealexander/59c5f06d000e3d0efdeb73a1958d4d3a to your computer and use it in GitHub Desktop.
Documentation for the Online Member Portal Updates
/* Required CSS to make this possible */
h2, h3, h4 {
color: #bf311a;
}
/* Correctly align icons in the Profile page */
.page_collapsible > h2 {
display: inline;
}
/* Provide an appropriate distance between paragraphs */
p + p {
margin-top: 0.5rem;
}

Online Member Portal Updates

To update the Online Member Portal, go to "Online Donor Setup" in the "OPI" tab. Most of the content printed on the page can be found in the "Script Options" tab.

Proposed Changes (Script Options)

Support Number Formatting

On our main websites, we use the number formatting (###) ###-####. In Allegiance we use ###.###.#### and ###-###-####. Let's consolidate all support numbers to use the (###) ###-#### format.

This will need to be updated in the following fields:

  • Account Creation Success - Account Create Script
  • Giving History - Pledge Recent Header

Additionally, there are a few phone numbers which do not use the (314) 516-7474 Support number.


Forgot Username Page - Forgot Username Not Found Message

Email not found. Please try again or call 314-516-4000 for assistance.

Proposed Change

Email not found. Please try again or call (314) 516-7474 for assistance.



Login - Below Login/Password Entry

See Content Adjustments section. It previously used 314.516.5968.



Name/Salutation - Name/Salutation Change Email Confirmation Footer

If the information above is not accurate, please log in to your online account and cancel this request. For any additional questions or concerns, please call the membership office at 314-516-6684.

Proposed Change

If the information above is not accurate, please log in to your online account and cancel this request. For any additional questions or concerns, please call the membership office at (314) 516-7474.



Name/Salutation - Name/Salutation Change Email Confirmation Pending Footer

If the information above is not accurate, please log in to your online account and cancel this request. For any additional questions or concerns, please call the membership office at 314-516-6684.

Proposed Change

If the information above is not accurate, please log in to your online account and cancel this request. For any additional questions or concerns, please call the membership office at (314) 516-7474.




Content Adjustments

Login - Below Login/Password Entry

<br /><h2><center>One University Boulevard  |  St. Louis, MO 63121-4400  |  Phone: 314.516.5968  |  Fax: 314.516.5993<br />
<i>A Service of the University of Missouri-St. Louis</i></center></h2>

We need to replace UMSL's address with our own, remove the service-line (since it's present immediately underneath this in the footer), remove the Fax number, and replace the phone number with our current contact number.

Proposed Change

<br>
<p>3651 Olive Street, St. Louis MO 63108-3601 | Membership Support: (314) 516-7474</p>




Remove Hardcoded Colors from Headlines

The headlines are currently hardcoded with their colors. This markup looks something like <font color="#bf311a">Headline Text</font>. It would be preferable to replace these with a heading tag intead. This will help assistive technology navigate the pages, will remove the deprecated <font> tag, and will allow us to manage styling in our stylesheet instead.

(Implementation Note: heading tags range from <h1> to <h6>. I will color h2 through h4 in the stylesheet. <b><font> should be replaced with <h2>, <font size=3> should be replaced with <h3>)


Giving History - Pledge Recent Header

<font size=3>Can’t find what you’re looking for? For membership assistance or to make changes to your account contact us at membership@stlpublicradio.org or call us at 314-516-7474</b><br /><br /><br /><b><font color="#bf311a"><font size=3>Current Donations</b></font>

Proposed Change

<p>Can’t find what you’re looking for? For membership assistance or to make changes to your account contact us at membership@stlpublicradio.org or call us at (314) 516-7474</p>
<br>
<h2>Current Donations</h2>



Home Page - Below Quick Link

<h1>Welcome <i><PEOFNAME> <PEOLNAME></i></h1><br /><b><font color="#bf311a">Membership Information:</font></b>

Proposed Change

<h1>Welcome <PEOFNAME> <PEOLNAME></h1>
<h2>Membership Information:</h2>



Home Page - Below Account Info

<br /><b><font color="#bf311a">Membership News:</font></b>

Proposed Change

<h2>Membership News:</h2>



Home Page - Below Account Triggers

<br /><b><font color="#bf311a">Membership Account Details:</font></b>

Proposed Change

<h2>Membership Account Details:</h2>



Profile - Profile Additional Name Header

<font color="#bf311a">Additional Name</font></b>

Proposed Change

<h2>Additional Name</h2>



Profile - Profile Address Header

<font color="#bf311a">Address</font></b>

Proposed Change

<h2>Address</h2>



Profile - Profile Telephone Header

<font color="#bf311a">Telephone</font>

Proposed Change

<h2>Telephone</h2>



Profile - Profile Email Header

<font color="#bf311a">Email</font></b>

Proposed Change

<h2>Email</h2>



Profile - Profile Demographic Header

<font color="#bf311a">Additional Information</font></b>

Proposed Change

<h2>Additional Information</h2>



Profile - Profile Social Media Header

<font color="#bf311a">Social Media</font>

Proposed Change

<h2>Social Media</h2>



Additional Script Changes

Login - Above Login/Password Entry

This markup uses headings around paragraph text. This should be replaced with paragraphs instead

<h1 style="text-align:left"><br />St. Louis Public Radio Online Member Account</h1><br /><h2 style="text-align:left"><p>Welcome to St. Louis Public Radio's online membership system. Now you can review your donation history, print tax receipts and update your information and member preferences online!<p><br>If you do not already have an account login please click on the <b>Sign up for an account</b> link under the Log In button below.</h2>                               

Proposed Change

<div style="text-align: left">
  <h1>St. Louis Public Radio Online Member Account</h1>
  <p>Welcome to St. Louis Public Radio's online membership system. Now you can review your donation history, print tax receipts and update your information and member preferences online!<p>
  <p>If you do not already have an account login please click on the <b>Sign up for an account</b> link under the Log In button below.</p>
</div>



Giving History - Giving History Chart Header

The "Giving History" headings are styled differently than the similar headings on the Profile page

<h1>Giving History</h1>

Proposed Change:

<h2>Giving History</h2>

Giving History - Pledge Current Header

<h1>Donation History</h1>

Proposed Change:

<h2>Donation History</h2>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment