All things Shopify and commerce
I the explanation text i want to change it to all caps or just the first letter in a sentence.
NOT = "Engar Vörur Fundust. Notaði Færri Síur Eða Fjarlægðu Allar Vörur."
Like this = "ENGAR VÖRUR FUNDUST. NOTAÐU FÆRRI SÍUR EÐA FJARLÆGÐU ALLAR VÖRUR."
or
"Engar vörur fundust. Notaði færri síur eða fjarlægðu allar vörur."
Hey @KristinJona
Welcome to Shopify Community! Can you share your Store URL so I can have a look on it? Also, if you have password enabled then please share the password as well. Your cooperation would be greatly appreciated.
Best Regards,
Moeed
Mind sharing the URL? Should be simple enough once I can see the page link that this is displayed on.
✅ Found this helpful? Please Like & Mark as Solution — I truly appreciate it!
Connect with me | Get a Shopify Store with an Unlimited Free Trial – No Credit Card Needed! | ❤️ Support my work, If You’d Like!
Could you do this,
for css Allcaps,
.text-class {
text-transform: uppercase;
}
for javascript Allcaps,
const element = document.querySelector('.text-class');
if (element) {
element.textContent = element.textContent.toUpperCase();
}
for sentence case javascript
const element = document.querySelector('.text-class');
if (element) {
const text = element.textContent.toLowerCase();
element.textContent = text.replace(/(^\w|\.\s*\w)/g, c => c.toUpperCase());
}
You can try this.
Shopify and our financial partners regularly review and update verification requiremen...
By Jacqui Mar 14, 2025Unlock the potential of marketing on your business growth with Shopify Academy's late...
By Shopify Mar 12, 2025Learn how to increase conversion rates in every stage of the customer journey by enroll...
By Shopify Mar 5, 2025