• Resolved gkdias

    (@gkdias)


    I am working on a website which allows users to book a seat in a training course. During the booking process, the user is able to enter in their information and submit the booking. I’m using Event Manager to accomplish that function and manage events. However, if they’re already a user, they can enter in their username and password, then login. When the user does that no text is displayed in the username and password fields (actually, at the bottom of the page there are a few other fields in the Leave A Reply section, such as Comments, Name, Email etc. that exhibit the same invisible text issue). The text is there, and if you highlight it you can see it. But, the background and foreground are the same color, and I can’t determine how to change it. With the help of another person (@angelo_nwl – Thank you Angelo!), I was able to get the booking information fields changed by using the following Custom CSS for the site:

    .em-booking-form-details input, .em-booking-form-details select, .em-booking-form-details textarea {
    color: #000 !important;
    }

    However, this did not change the login fields or post fields on the page. If anyone can help me determine what custom CSS code is needed to change the text color to 000, I would be greatly appreciative!

    If you need any additional information, please don’t hesitate to let me know, and I’ll be happy to provide it.

    Thank you in advance!

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    Hi,

    Your theme CSS might be conflicting or using general CSS for labels and fields, however, you can check and modify the template file at events-manager/templates/forms/bookingform/login.php

    to use templates: https://wp-events-plugin.com/documentation/using-template-files/

    eg. wp-content/themes/Your Theme/plugins/events-manager/forms/bookingform/login.php

    Thanks

    Thread Starter gkdias

    (@gkdias)

    Good morning, @angelo_nwl. Thank you so much for your reply and advice. I will check this out tonight, and will follow up with you. I am much obliged for your assistance.

    Best regards….

    Thread Starter gkdias

    (@gkdias)

    Hello again.

    Following your advice, I found the login.php file in the following location: wp-content/plugins/events-manager/templates/forms/bookingform/login.php. I backed up the file, and did some experimenting. Finally, I was able to get both the username and password to work by adding the style parameter:

    <input type=”text” name=”log” class=”input” value=”” style=color:black />
    <input type=”password” name=”pwd” class=”input” value=”” style=color:black />

    It worked like a charm! I don’t believe I would have found it without your guidance, so I’m greatly appreciative.

    I am noticing the same problem “Leave a Reply” section, where you can post a comment. I’m looking for a similar file for that, but haven’t found it yet. If you have any suggestions, I’m all ears.

    Again, thank you @angelo_nwl for your help!!!

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Text in fields invisible’ is closed to new replies.