Combine tags in url

Is it possible combine tags?
For examle in this demo blog: BlueAndPink - Notes

I can view articles with Text tag: BlueAndPink - Notes
Can I view articles with Text and Image tag? Something like: BlueAndPink - Notes or BlueAndPink - Notes?

Thanks

Hi, sure that’s possible. I do that here https://sioen-ppc.com/en/products/certified:EN+343|EN+ISO+20471.

You have to reserve a “separator character” that’s not in your tags (e.g. “|”), and then explode('|', $params) in your controller.

Once you have these values, you can filter your pages collection with those. More info here.

Thanks, I will look at it!