I’m trying to use a tag created by a user as a class.
When the user puts the tag “Jackets and Smocks”,
Can I make it look like “JacketsandSmocks” in the frontend with all spaces removed?
Also, what if I want “jacketsand smocks” to show all lowercase letters?
How can I do it? Please help
<?php foreach ($page->children()->listed() as $product): ?>
<?php foreach ($product->servicestags()->split( ) as $stags): ?>
<li class="<?= $stags ?>">
<a href="#" data-filter-value=".<?= $stags ?>">
<span class="tags_img"></span>
<span class="tags_text"><?= $stags ?></span>
</a>
</li>
<?php endforeach ?>
<?php endforeach ?>