Useful Links
Our Aim
Freeazio’s goals are to provide innovative digital solutions that enhance productivity, simplify workflows, and support businesses and individuals with cutting-edge tools. They aim to create user-friendly SaaS products
VeriLock is an online license manager that helps protect your plugins and themes from unauthorized use. Follow this step-by-step guide to integrate VeriLock into your product.
verilock-license.php
).your-plugin.php
).include_once plugin_dir_path(__FILE__) . 'verilock-license.php';
Modify your main plugin file to prevent access until the license is activated:
public function snow_flakes_add_plugin_page()
{
if (is_plugin_activated6093()) {
add_menu_page(
__('freeazio', 'nr_snow_flakes'), // Page title
__('freeazio', 'nr_snow_flakes'), // Menu title
'manage_options', // Capability
'snow-flakes', // Menu slug
array($this, 'snow_flakes_create_admin_page'), // Function
'dashicons-tickets-alt', // Icon
100 // Position
);
} else {
// Show admin notice if the license is not activated
add_action('admin_notices', function () {
echo '<div class="notice notice-error"><p>
<strong style="color: red;">
Please activate your license to enable updates. <a href="' . admin_url('options-general.php?page=license-validator6093') . '" style="color: red;">Activate Now</a>
</strong></p></div>';
});
}
}
Your plugin or theme is now protected with VeriLock! Only users with a valid license can activate and use it.
If you have any questions, feel free to ask! 🚀