Background:
The page returned after submitting an RSVP registration has a “Payment handling” section which displays the payment form elements. This section has a div wrapper with
id=”div_eme-payment-form”
and
class=”eme-payment-form”
This allows custom styling of the form elements inside this div that do not have their own EME-specific hooks.
Expected:
All renderings of the same payment form will have this same div wrapper and style hooks, so that one styling affects all form renderings equally.
Actual:
Page rendered by #_PAYMENT_URL does not have this same div wrapper and style hooks.
Custom form styles based on div wrapper hooks above do not render due to missing div wrapper that provides EME-specific hooks.
Fix:
Add same div wrapper with same style hooks to rendering of #_PAYMENT_URL page.
Check any other instances where payment form is rendered to see if same issue exists.