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!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘Remove uppercase every first letter of word’ is closed to new replies.