Posts tagged Options

Hiding bullets on a Google Form

0

Because the multiple choice fields on a Google Form are rendered as an unordered list (with a UL tag), by default, the form will appear like this:

 

 

Add this CSS to either the theme or via the wpGForm custom CSS settings:

div.ss-form-entry>ul {
    list-style-type: none;
}

After adding the above CSS it will appear like this:

Hopefully this will help you make your Google Forms look the way you want within WordPress!

 

 

 

 

 

wp-SwimTeam v0.2.486 now available

A couple of new features have been added to wp-SwimTeam.

  1. It is now possible to export a single swimmer’s record to CSV of SDIF.  When a single swimmer is selected, the exported file will contain the information for just that swimmer.  When no swimmers are selected, the entire roster will be exported.  Single swimmer SDIF export is useful for importing late additions into WinSwim which is something I’ve had to do a few times this week.
  2. The LSC Registration Pyramid (SDIF) can now be generated using the Age Group Age (computed base on cut off date) instead of the swimmer’s true age.  By default the real age is exported which is what wp-SwimTeam has done traditionally.  If you want to use the computed Age Group Age, change the setting on the SDIF Profile tab from the Options menu.

A new version, v0.2.486, of wp-SwimTeam is available for download from the Download page.

wp-SwimTeam v0.1.450 now available

This morning I completed phase 1 of some new functionality that I have referred to as “Global Update”.  The Global Update functionality allows all of the Optional Swimmer Fields that have been defined to be changed in mass from their current value to another value.

If you are using an Optional Swimmer Field (OSF) to track something like “Fees Paid” as a “Yes-No” field, you can use the new Global Update to reset them all to the “No” state.  This functionality may be applied to Optional User Fiends (UOU) as well but right now it is limited to only OSF fields.  Additionally, the “Results” field currently is displayed but changing it has no effect.

There are a few other changes that I fixed as I run into things and I also fixed the situation with the Swim Team Profile labels Michael Hale ran into recently.  The issue there was if the label was only numeric it was invalid HTML for the field name.  There is now a check to ensure that whatever text is specified for the label will now be valid for an HTML attribute.

This version also changes how the Status field is determined.  It is now derived based on the Active Season.  There is an issue sorting on the Status field on the All Swimmers tab so it is currently disabled.

You can find v0.1.450 on the Download page.  I strongly recommend backing up your database before installing this version.

New functionality in the works

I haven’t posted much but I have been working on wp-SwimTeam off and on now that the MacDolphins summer season is over.  I haven’t released anything yet but I’ve made some significant improvements. 

Opt-In/Opt-Out

Improvements have been made to the Opt-In/Opt-Out process to make it much less confusing.  The Opt-In/Opt-Out form is now smarter, only presenting the list of strokes to the user when a Partial Opt-In/Opt-Out is selected.  The ability to Opt-In/Opt-Out has also been added to the “My Swimmers” tab to make it easier to find.

Login Redirect

I’ve also added a new option to control what happens when end users login to a site running wp-SwimTeam.  For most users, landing on the WordPress Dashboard page is confusing.  They don’t care about 99% of the stuff presented to them nor should they.  The plugin now allows definition of a login redirect so the user can be sent to either the home page or the Swim Team Overview (which is what I expect to use most of the time) page.  Landing on the Swim Team Overview page makes the most sense for most users since when they login, they are most likely doing some level of interaction with the swim team functionality.

Results Import

Results import is still  in progress, the other two areas mentioned above are complete.  At this point importing results does little more than perform a first pass validation that the supplied file is indeed a SDIF results file.  Now that I have the uploading and validation complete, I need to work on the data model to store results.  Results will be connected to swimmers and meets and events.  Since a new table will be created, results will change the database version when it is released.

Initially I expect to simply report results from a meet and be able to look at results for any given swimmer.  Longer term I want to use Open Flash Chart to plot results on a per swimmer basis over the course of a season or possibly several seasons.  I don’t expect to get to this until much later this year though.

WordPress 2.8.x

I am still working with WordPress 2.7.1 in my development environment.  I haven’t even tried 2.8.4 yet so I have no idea what the impact is.  I will likely do so once I am done with the results.

Go to Top