Support » Plugin: WP Customer Reviews » Remove uppercase every first letter of word

  • Hello,

    how do I remove uppercase every first letter of word of the custom field name entries?

    For example, I enter “Hello word” -> frontpage shows “Hello Word”.
    Or “You like our page” -> frontpage shows “You Like Our Page”

    I remove the follow code in wp-customer-reviews.js:

    function wpcr_ucfirst(str) {
        var firstLetter = str.slice(0,1);
        return firstLetter.toUpperCase() + str.substring(1);
    }

    but this has no effects.

    Hope someone can help me 🙂

    Thank you!

    https://wordpress.org/plugins/wp-customer-reviews/

Viewing 2 replies - 1 through 2 (of 2 total)
  • Hi jingz. That appears to be an issue with the CSS in your theme. I’d look for the text-transform property, like this: text-transform: capitalize

    Good luck.

    Thread Starter jingz

    (@jingz)

    Hi,

    thanks you for quick reply 🙂

    I checked the CSS and the text-transform is not define for the labels in custom review form.

    In the backend, when I enter “You like our page” and than click on save, the custom field shows “You Like Our Page”. I it looks like that one script or something else converts the text-transform to uppercase every first letter of the words and than saving the value.

    I tested it with an other WordPress installation, same issue. Also on an clean localhost installation.

    Thanks for help 🙂

    Cheers

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Remove uppercase every first letter of word’ is closed to new replies.