• Resolved kozmokai

    (@kozmokai)


    So basically the input fields are white as expected, but so is the text when you try putting it in. When you try typing in the text fields you don’t see anything but if you drag your cursor over the words you typed, they get highlighted and you see them so that means they’re there, just not visible like it’s supposed to originally be. Is there any way to fix this please?

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

Viewing 14 replies - 1 through 14 (of 14 total)
  • Plugin Author Gemini Labs

    (@geminilabs)

    Hi @kozmokai

    I would normally suggest you switch the Site Reviews plugin style to “Plugin: Ninja Forms (v3)” as you are using the Ninja Forms plugin.

    However, I have noticed that on your website the ninja forms stylesheet does not load on pages without a ninja form. Additionally, since you are using a dark theme, you would still experience the same problems.

    You could use the “Site Reviews (minimal)” plugin style which would partially fix the issue, but in doing this you would not have any of the validation error styles.

    In order to fix this properly, you will need to add some custom CSS to your website. Please see: https://pastebin.com/UwtukwVp

    And to fix your submit button: https://pastebin.com/XpJNSx0s

    Thread Starter kozmokai

    (@kozmokai)

    Thank you for the response! 🙂 but where do I paste these codes excatly?

    Plugin Author Gemini Labs

    (@geminilabs)

    1. If your theme allows you to add custom CSS to your website, paste the first one there. For example:

    Or you can use a plugin such as: https://wordpress.org/plugins/simple-custom-css/

    2. The second one you need to paste inside your active theme’s functions.php file as shown in the code snippet:

    You can edit your functions.php file here:

    Thread Starter kozmokai

    (@kozmokai)

    I get the first option to add additional CCS 😀 … and where does the second go?

    Plugin Author Gemini Labs

    (@geminilabs)

    It goes in your theme’s functions.php file.

    Please see this: https://www.youtube.com/watch?v=NCo8g8hFsoU

    Thread Starter kozmokai

    (@kozmokai)

    I’m a bit confused as to where exactly the second code has to be pasted in the functions.php file. Which part of the file? I watched the video and can’t find where he’s talking about. The first code goes in well and work perfectly btw, thank you for that.

    Plugin Author Gemini Labs

    (@geminilabs)

    Thread Starter kozmokai

    (@kozmokai)

    I just got “Unable to communicate back with site to check for fatal errors, so the PHP change was reverted. You will need to upload your PHP file change by some other means, such as by using SFTP.”

    This happened before when the code didn’t work before and I had to restore my website because it crashed my site. What do I do? This is the code I’m pasting in the 2nd line of the function.php file.

    /**
    * Adds the “edgtf-btn”, “edgtf-btn-solid”, and “edgtf-btn-small” classes to the submit button
    * Paste this in your active theme’s functions.php file.
    * @link https://www.kozmo-kai.com
    * @param string $template
    * @return string
    * @filter site-reviews/build/template/form/submit-button
    */
    add_filter( ‘site-reviews/build/template/form/submit-button’, function( $template ) {
    $search = ‘class=”glsr-button’;
    $replace = ‘class=”glsr-button edgtf-btn edgtf-btn-solid edgtf-btn-small’;
    if( false !== strpos( $template, $search )) {
    $template = str_replace( $search, $replace, $template );
    }
    return $template;
    });

    Thread Starter kozmokai

    (@kozmokai)

    Welp, it just crashed again lol. I have no clue why this is happening.

    Plugin Author Gemini Labs

    (@geminilabs)

    Some servers are not configured to allow using the WordPress theme editor. In your case, the only way you will be able to do this is to login to your server using FTP or similar and make the change to your theme’s functions.php file like that.

    If you do not have much experience with this, then I would advise just to leave it.

    Plugin Author Gemini Labs

    (@geminilabs)

    If you edit the functions.php file using FTP or a File Manager (like the one provided by cPanel), please make sure that you do the following:

    1. Make a backup of the functions.php file before you edit it.
    2. Make sure that you copy/paste directly from https://pastebin.com/XpJNSx0s

    • This reply was modified 5 years, 2 months ago by Gemini Labs.
    • This reply was modified 5 years, 2 months ago by Gemini Labs.
    • This reply was modified 5 years, 2 months ago by Gemini Labs.
    • This reply was modified 5 years, 2 months ago by Gemini Labs.
    Thread Starter kozmokai

    (@kozmokai)

    If I entrusted you with my login info, would you do it for me please?

    Plugin Author Gemini Labs

    (@geminilabs)

    Please send an email to site-reviews[at]geminilabs[dot]io

    Thread Starter kozmokai

    (@kozmokai)

    Email sent, please respond.

Viewing 14 replies - 1 through 14 (of 14 total)
  • The topic ‘Input texts in fields are not visible’ is closed to new replies.