Dos the code need to appear somewhere special in the custom CSS file?
I did this with my stageshow-custom-1.css, but it still required address and other fields:
/*
To add your own custom CSS file, do the following:
Rename this copy of this file in the wp-content/uploads folder
Add your CSS to the renamed file and save it
Go to the StageShow->Settings->Advanced menu page
Select the file in the Custom StyleSheet Setting
Save the Settings
Alternatively use the edit button on the settings admin page to edit the file
When the file is saved StageShow will change the filename if required
This file includes a few samples to get you started …
Note: All these samples CSS entries are “commented out”. Remove the comments
start and end markers around the CSS statements to make them active.
*/
/*
List of Form Classes for User Reservation Form
stageshow-checkoutdetails-row-saleFirstName
stageshow-checkoutdetails-row-saleLastName
stageshow-checkoutdetails-row-saleEMail
stageshow-checkoutdetails-row-salePPStreet
stageshow-checkoutdetails-row-salePPCity
stageshow-checkoutdetails-row-salePPState
stageshow-checkoutdetails-row-salePPZip
stageshow-checkoutdetails-row-salePPCountry
stageshow-checkoutdetails-row-salePPPhone
*/
.stageshow-checkoutdetails-row-salePPStreet,
.stageshow-checkoutdetails-row-salePPCity,
.stageshow-checkoutdetails-row-salePPState,
.stageshow-checkoutdetails-row-salePPZip,
.stageshow-checkoutdetails-row-salePPCountry,
.stageshow-checkoutdetails-row-salePPPhone
{
display: none;
}
/* Make the Shopping Trolley Header BOLD */
.stageshow-trolley-titles td
{
font-weight: bold;
}
/* Adjust size of dropdown */
.stageshow-trolley-ui
{
max-width: 100px;
}
.stageshow-boxoffice-qty
{
max-width: 100px;
}
/* Make the Remove link into a button */
.stageshow-trolley-row .stageshow-trolley-remove a
{
padding: 3px 10px;
background: none repeat scroll 0 0 #24890D;
color: #FFFFFF;
text-decoration: none;
}
/* Hide the block separator in the Box-Office output */
/*
td.stageshow-boxoffice-separator
{
display: none;
}
*/
/* Hide the date/time column in the Box-Office and Shopping Trolley output */
/*
.stageshow-boxoffice-datetime,
.stageshow-trolley-datetime
{
display: none;
}
*/
/* Change the colours of the Box Office Buttons */
.stageshow-boxoffice-add input,
.stageshow-trolley-checkout #selectseats,
.stageshow-boxoffice-layout #seatsselected,
.stageshow-trolley-checkout #checkout
{
background: none repeat scroll 0 0 #E92A49;
font-size: 12px;
}
/* Change the colours of the Box Office Buttons when they have the focus */
.stageshow-boxoffice-add input:focus,
.stageshow-trolley-checkout #selectseats:focus,
.stageshow-boxoffice-layout #seatsselected:focus,
.stageshow-trolley-checkout #checkout:focus
{
background: none repeat scroll 0 0 #FF40FF;
font-size: 12px;
}
/* Change the colours of the Box Office Buttons when they have a mouseover */
.stageshow-boxoffice-add input:hover,
.stageshow-trolley-checkout #selectseats:hover,
.stageshow-boxoffice-layout #seatsselected:hover,
.stageshow-trolley-checkout #checkout:hover
{
background: none repeat scroll 0 0 #FF40FF;
font-size: 12px;
}
/* Change the colours of the Box Office Buttons when they are disabled */
td.stageshow-boxoffice-add input[disabled]
{
background: none repeat scroll 0 0 #C0C0C0 !important;
font-size: 12px;
}