Individual Provider Pages
The plugin by default won't be creating pages for providers. We instead link each provider on the game cards back to the lobby url (that you set in the plugin settings) so when it's clicked it will show the lobby but filtered for the selected provider.
Disable Provider Link
If you want to disable the provider link and just show the name add the following attribute in the shortcode:
[slotsl-game-archives provider_link="false"]
To disable the provider link on the sidebar widget you need to add the following to your theme's functions.php
add_filter('slotsl/widget/disable_providers_link','__return_true');
Creating individual provider pages
If you want to create individual pages you will need to create them statically in WordPress and use the games shortcode. So for example to show pragmatic play games:
[slotsl-game-archives provider="pragmatic-play"]
Linking provider links to your custom urls
If instead of linking back to the lobby you want to link the game cards to your custom created urls you will need to use some php like this:
add_filter('slotsl/provider_url', function($url, $provider) { return 'https://mycustomurl.com/' . $provider->slug; });
Where $url is the original url and $provider is the one being filtered.