Terms and Conditions Popup on User Login or at WooCommerce checkout
Terms and Conditions Popup on User Login or at WooCommerce checkout Install Statistics
-11
0%
Today: 0
Yesterday: 11
All-time: 10,545 downloads
Try plugin: Terms and Conditions Popup on User Login or at WooCommerce checkout
We'll create fresh WordPress site with Terms and Conditions Popup on User Login or at WooCommerce checkout installed. You have 20 minutes to test the plugin after that site we'll be deleted.
Takes ~10 seconds to install.
About Terms and Conditions Popup on User Login or at WooCommerce checkout
Popup your Terms and Conditions when users log in to your website or when they purchase an item.
Terms and Conditions popup can be used three ways:
Show popup on user login
or at WooCommerce checkout
or using a custom coded condition
User action is recorded as proof in the database for logged in users.
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.
Post your Question/Support/Feature-Requests in our Discord Channel.
Never share your license key in the Discord channel.
Terms on User Login Popup Workflow
Display popup upon user login
Ability to redirect users
Ability to force log out users who decline
Data is stored as proof
See if user accepted or not on their edit page
Woocommerce Popup Workflow
Must accept in order to check out
Log out or redirect users who decline your terms
Show for logged in users, anonymous visitors or both
Data is stored in your database for logged in users as proof
Premium features
Reset users after terms update
Generate user reports in CSV
Advanced logging with timestamp for every action
Do not force logout on decline
Do not show popup even after decline
Use custom page as popup content
Limit popup by user roles
Force popup on every login
Analytics and reports
IP and location tracking capability
Designated test user
Store Anonymous users acceptance reference on Order
How To Install and Use the plugin
Settings Pages of the plugin
Terms Popup Features
The popup will show when user logs in. The popup will not dismiss until user clicks Accept or Decline button.
The user’s response to the popup, accept or decline gets saved in the database.
The popup will not shown again for users who have accepted the Terms. There is an option to turn on “Show popup on every single login” if needed.
The popup will show on user login every time for users who have Declined the terms blocking further navigation.
The popup has customizable fields and labels.
The popup has 2 buttons Accept and Decline.
Accept button is only enabled for the user once he has scrolled through terms. This feature can also be disabled.
Accept button will dismiss the popup and register that the user has accepted the terms.
Decline button will log out the user and register that the user has declined the terms.
You can set different redirect URL’s if you wish to redirect the user upon clicking Accept or Decline.
Easily customize the size of the popup, the labels in the popup as well as the size and color of buttons.
Option to enable popup on every single login regardless if they accepted terms at previous logins.
TEST MODE can be used to test the looks and text of the popup on any page, be sure to remove from TEST MODE after you tested the popup.
Terms Popup Premium Features
The popup allows for resetting all users, to force them to re-accept new terms. Useful if you plan to update your terms in the future and have everyone re-accept your new updated terms.
Reset a Single user on the user edit page, force a user to re-accept terms and conditions.
Status of who has accepted your Terms gets displayed on the User listing page.
Log the time when user has accepted the terms and conditions. Date and time of acceptance is displayed both on individual user edit page and in list of all users.
Ability to change the font size for the terms inside the poup.
The popup can bring in any custom page that you have on your website as terms content in the popup.
Using a custom page as the terms popup content allows for having nicely formatted terms, with links inside. It also allows for use of shortcodes inside, multimedia etc.
Ability to limit the popup to only be shown for certain types of user roles. Subscribers, Editors, Admins etc. or custom roles.
Advanced loging of user activity regarding the popup.
Generate and download a CSV report of all the users showing each user if and when accepted your terms.
Designated Test User, special test user to which the popup will always show, great for testing even on live environment.
Reccomend new features and gain access to premium features by upgrading to premium
WooCommerce Integration
Display popup when visiting a product page
Display popup for anonymous visitors
Possibility to redirect visitor to your home page on decline of terms
WooCommerce Premium Features
Saves Acceptance Reference ID on Order
Display popup on any of the following: product page, category page, cart page or checkout page
Display popup for logged in users, anonymous visitors or both
For logged in users response is saved in the database and popup is no longer displayed until terms have been updated
For anonymous visitors accept response can be remembered in the browser for their conveninece
On Terms declined redirect users and visitors to any page or url of your choosing
Possibility to force logout user on decline and redirect them
Custom condition using your own code
Using a premium license key a custom filter is made available for you
tpul_override_show_popup
You can override the logic when the popup should show or not show for a user or visitor.
You can simply implement the custom filter in your functions.php file
Code 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');