by Árpád Lehel Mátyus on WordPress.org
Creates a popup with a scrollable window that will show your own custom Terms and Conditions when users logs in to your website.

Popup display
The Legal-Grade Solution for Consent and Compliance. US-based premium developer support available for seamless integration and ongoing assistance.
This plugin will create a popup with a scrollable window that will show your own custom Terms and Conditions. Only visitors who accept the conditions will be allowed to continue their user flow. Extensive list of features listed below.
Easily display your Terms and Conditions in a way that ensures user compliance:
Anywhere on Your Site:
At User Login or After Login:
For WooCommerce:
Custom Conditions:
Enjoy community support.
Post your Question/Support/Feature-Requests in our Matyus Media Slack Channel.
Never share your license key in the Slack channel.
Enjoy premium tech support with every license key purchase. Support and dev team based in USA.
We take security seriously! This plugin participates in the Patchstack Vulnerability Disclosure Program, so security researchers can report issues responsibly.
More details on Patchstack. See our Security policy.
Learn more about Premium features on our website
We take user consent proof more seriously than any other plugin in this niche—period.
tpul_override_show_popupCode sample below uses original value of $should_show_popup in conjunction with extra condition. This is so we only show the popup if a user has not yet accepted the terms and an extra condition is fulfilled.
function YOUR_CUSTOM_FUNCTION_show_popup($should_show_popup) {
// should_show_popup - is the original value based on active options
// EXTRA_CONDITION is an example variable that you can set
$EXTRA_CONDITION = false; // add your custom logic
if ($should_show_popup && $EXTRA_CONDITION) {
return true;
} else {
return false;
}
}
add_filter('tpul_override_show_popup', 'YOUR_CUSTOM_FUNCTION_show_popup');
//