changing text in the reg events setting admin page
authorAnthony Talarico <talarico@gaslightmedia.com>
Fri, 29 Dec 2017 15:34:37 +0000 (10:34 -0500)
committerAnthony Talarico <talarico@gaslightmedia.com>
Fri, 29 Dec 2017 15:34:37 +0000 (10:34 -0500)
changing account. terms  and payment options text for the reg event admin settings page

views/admin/registrations/eventEdit.html

index f17366a..ef1e271 100644 (file)
             <tr>
                 <th {if $regEvent.fieldRequired.active}class="glm-required-nowrap-left-align"{else}class="glm-nowrap-left-align"{/if}>Registrations Active:</th>
                 <td {if $regEvent.fieldFail.active}class="glm-form-bad-input" data-tabid="glm-active"{/if}>
-                    <input type="checkbox" name="active" {if $regEvent.fieldData.active.value} checked{/if}> This permits users to register for events on the front-end
+                    <input type="checkbox" name="active" {if $regEvent.fieldData.active.value} checked{/if}> Permits users to register for events on the front-end
                 {if $regEvent.fieldFail.active}<p>{$regEvent.fieldFail.active}</p>{/if}<br>
                 </td>
             </tr>
             <tr>
                 <th {if $regEvent.fieldRequired.admin_active}class="glm-required-nowrap-left-align"{else}class="glm-nowrap-left-align"{/if}>Admin Active:</th>
                 <td {if $regEvent.fieldFail.admin_active}class="glm-form-bad-input" data-tabid="glm-admin_active"{/if}>
-                    <input type="checkbox" name="active" {if $regEvent.fieldData.admin_active.value} checked{/if}>
+                    <input type="checkbox" name="active" {if $regEvent.fieldData.admin_active.value} checked{/if}> Permits admin to enter registrations for this event event when
+"Registrations Active" is not set
                 {if $regEvent.fieldFail.admin_active}<p>{$regEvent.fieldFail.admin_active}</p>{/if}<br>
                 </td>
             </tr>
                 </td>
             </tr>
             <tr>
-                <th {if $regEvent.fieldRequired.registration_account_options}class="glm-required-nowrap-left-align"{else}class="glm-nowrap-left-align"{/if}>Account Options:</th>
+                <th {if $regEvent.fieldRequired.registration_account_options}class="glm-required-nowrap-left-align"{else}class="glm-nowrap-left-align"{/if}>Registrations By:</th>
                 <td {if $regEvent.fieldFail.registration_account_options}class="glm-form-bad-input" data-tabid="glm-registration_account_options"{/if}>
         {foreach from=$regEvent.fieldData.registration_account_options.bitmap item=v}
-                        <input type="checkbox" name="registration_account_options[{$v.value}]" value="{$v.value}"{if $v.default} checked{/if}> {$v.name}<br>
+                <input type="checkbox" name="registration_account_options[{$v.value}]" value="{$v.value}"{if $v.default} checked{/if}> {$v.name}<br>
         {/foreach}
                 {if $regEvent.fieldFail.registration_account_options}<p>{$regEvent.fieldFail.registration_account_options}</p>{/if}<br>
                 </td>
             </tr>
             <tr>
-                <th {if $regEvent.fieldRequired.payment_methods}class="glm-required-nowrap-left-align"{else}class="glm-nowrap-left-align"{/if}>Payment Methods:</th>
+                <th {if $regEvent.fieldRequired.payment_methods}class="glm-required-nowrap-left-align"{else}class="glm-nowrap-left-align"{/if}>User Payment Methods:</th>
                 <td {if $regEvent.fieldFail.payment_methods}class="glm-form-bad-input" data-tabid="glm-payment_methods"{/if}>
                     Checking a payment method makes it available for use by regular users at checkout.<br>
         {foreach from=$regEvent.fieldData.payment_methods.bitmap item=v}
                 </td>
             </tr>
             <tr>
-                <th {if $regEvent.fieldRequired.restricted_payment_methods}class="glm-required-nowrap-left-align"{else}class="glm-nowrap-left-align"{/if}>Restricted Payment Methods:</th>
+                <th {if $regEvent.fieldRequired.restricted_payment_methods}class="glm-required-nowrap-left-align"{else}class="glm-nowrap-left-align"{/if}>Admin Payment Methods:</th>
                 <td {if $regEvent.fieldFail.restricted_payment_methods}class="glm-form-bad-input" data-tabid="glm-restricted_payment_methods"{/if}>
-                    Restricted payment methods are those only available to logged in administrative users. For example, selecting "No Charge" here
-                    will allow administrative users to check out without having to provide any payment information.<br>
+                    Payment methods available to Administrative users.<br>
         {foreach from=$regEvent.fieldData.restricted_payment_methods.bitmap item=v}
                         <input type="checkbox" name="restricted_payment_methods[{$v.value}]" value="{$v.value}"{if $v.default} checked{/if}> {$v.name}<br>
         {/foreach}
                 </td>
             </tr>
             <tr>
-                <th {if $regEvent.fieldRequired.descr}class="glm-required-nowrap-left-align"{else}class="glm-nowrap-left-align"{/if}>Description (optional):</th>
+                <th {if $regEvent.fieldRequired.descr}class="glm-required-nowrap-left-align"{else}class="glm-nowrap-left-align"{/if}>Registration Description:</th>
                 <td {if $regEvent.fieldFail.descr}class="glm-form-bad-input" data-tabid="glm-descr"{/if}>
+                    This will be displayed in addition to any description text from the event
                     {php}
                         wp_editor('{$regEvent.fieldData.descr|escape:quotes}', 'glm_descr', array(
                             'media_buttons' => false,
                 </td>
             </tr>
             <tr>
-                <th {if $regEvent.fieldRequired.terms}class="glm-required-nowrap-left-align"{else}class="glm-nowrap-left-align"{/if}>Terms and Conditions for Registration:</th>
+                <th {if $regEvent.fieldRequired.terms}class="glm-required-nowrap-left-align"{else}class="glm-nowrap-left-align"{/if}>Terms and Conditions <br> for Registration:</th>
                 <td {if $regEvent.fieldFail.terms}class="glm-form-bad-input" data-tabid="glm-terms"{/if}>
+                    the user will be required to acknowledge this at checkout.
                     {php}
                         wp_editor('{$regEvent.fieldData.terms|escape:quotes}', 'glm_terms', array(
                             'media_buttons' => false,