Hey, @nofcfro!
There’s no shortcode for this.
However, you can:
- Use a floating button that allows users to open the settings modal and modify their cookie preferences at any time. You can enable this via wp-admin → Cookie Consent → Floating Button
- Control it programmatically by calling
pressidiumCookieConsent.showSettings()
(docs)
Show the settings modal.
pressidiumCookieConsent.showSettings(optionalDelay)
optionalDelay
— (optional) number
Examples:
// Immediately show the settings modal
pressidiumCookieConsent.showSettings();
// Wait 250 ms, then show the settings modal
pressidiumCookieConsent.showSettings(250);
You can learn more about how to control the plugin programmatically by referring to its wiki.