├── crm-lite.php ├── README.md └── readme.txt /crm-lite.php: -------------------------------------------------------------------------------- 1 | prefix . 'crm_leads'; 28 | 29 | $charset_collate = $wpdb->get_charset_collate(); 30 | 31 | $sql = "CREATE TABLE $table_name ( 32 | id mediumint(9) NOT NULL AUTO_INCREMENT, 33 | name varchar(100) NOT NULL, 34 | email varchar(100) NOT NULL, 35 | message text NOT NULL, 36 | submitted_at datetime DEFAULT CURRENT_TIMESTAMP NOT NULL, 37 | PRIMARY KEY (id) 38 | ) $charset_collate;"; 39 | 40 | require_once(ABSPATH . 'wp-admin/includes/upgrade.php'); 41 | dbDelta($sql); 42 | } 43 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | === CRM Lite === 2 | Contributors: adityapratapsingh 3 | Tags: crm, customer-management, leads, contact-form, simple-crm 4 | Requires at least: 5.0 5 | Tested up to: 6.8 6 | Requires PHP: 7.2 7 | Stable tag: 1.0 8 | License: GPLv2 or later 9 | License URI: https://www.gnu.org/licenses/gpl-2.0.html 10 | 11 | A lightweight CRM plugin to manage customers, leads, and simple contact interactions. Built for speed and simplicity. 12 | 13 | 14 | 15 | 16 | == ☄️UPDATE == 17 | [WordPress Plugin Directory] Successful Plugin Submission - CRM Lite 18 | the plugin is under review 19 | 20 | 21 | 22 | 23 | 24 | == Description == 25 | 26 | **CRM Lite** is a beginner-friendly CRM plugin for WordPress that allows you to manage customer data, track leads, and streamline client communication from your dashboard. 27 | 28 | **Features:** 29 | * Add, edit, and manage customer profiles. 30 | * Store phone numbers, emails, addresses, and notes. 31 | * Lightweight, fast, and easy to use. 32 | * Built with WordPress standards. 33 | 34 | This is ideal for freelancers, startups, and small businesses looking for a basic CRM tool. 35 | 36 | == Installation == 37 | 38 | 1. Upload the plugin files to the `/wp-content/plugins/crm-lite` directory, or install the plugin through the WordPress plugins screen directly. 39 | 2. Activate the plugin through the ‘Plugins’ screen in WordPress. 40 | 3. Use the `CRM` menu in your dashboard to start managing customers. 41 | 42 | == Frequently Asked Questions == 43 | 44 | = Is this plugin free? = 45 | Yes, it’s completely free and open source under the GPLv2 license. 46 | 47 | = Can I import/export customers? = 48 | This version doesn’t support import/export, but the feature is planned. 49 | 50 | == Changelog == 51 | 52 | = 1.0 = 53 | * Initial release of CRM Lite. 54 | 55 | == Upgrade Notice == 56 | 57 | = 1.0 = 58 | Initial version. Please back up your site before installing. 59 | 60 | == License == 61 | 62 | This plugin is licensed under the GPLv2 or later. See https://www.gnu.org/licenses/gpl-2.0.html for full terms. 63 | 64 | -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- 1 | === CRM Lite === 2 | Contributors: adityapratapsingh 3 | Donate link: https://yourwebsite.com/donate 4 | Tags: crm, customer-management, leads, contact-form, simple-crm 5 | Requires at least: 5.0 6 | Tested up to: 6.8 7 | Requires PHP: 7.2 8 | Stable tag: 1.0 9 | License: GPLv2 or later 10 | License URI: https://www.gnu.org/licenses/gpl-2.0.html 11 | 12 | A lightweight CRM plugin to manage customers, leads, and simple contact interactions. Built for speed and simplicity. 13 | 14 | == Description == 15 | 16 | **CRM Lite** is a beginner-friendly CRM plugin for WordPress that allows you to manage customer data, track leads, and streamline client communication from your dashboard. 17 | 18 | **Features:** 19 | * Add, edit, and manage customer profiles. 20 | * Store phone numbers, emails, addresses, and notes. 21 | * Lightweight, fast, and easy to use. 22 | * Built with WordPress standards. 23 | 24 | This is ideal for freelancers, startups, and small businesses looking for a basic CRM tool. 25 | 26 | == Installation == 27 | 28 | 1. Upload the plugin files to the `/wp-content/plugins/crm-lite` directory, or install the plugin through the WordPress plugins screen directly. 29 | 2. Activate the plugin through the ‘Plugins’ screen in WordPress. 30 | 3. Use the `CRM` menu in your dashboard to start managing customers. 31 | 32 | == Frequently Asked Questions == 33 | 34 | = Is this plugin free? = 35 | Yes, it’s completely free and open source under the GPLv2 license. 36 | 37 | = Can I import/export customers? = 38 | This version doesn’t support import/export, but the feature is planned. 39 | 40 | = Is there a Pro version? = 41 | Not yet — but we’re open to building it if there’s demand. 42 | 43 | == Screenshots == 44 | 45 | 1. Admin dashboard to manage customers. 46 | 2. Add new customer form. 47 | 3. Customer details view. 48 | 49 | == Changelog == 50 | 51 | = 1.0 = 52 | * Initial release of CRM Lite. 53 | 54 | == Upgrade Notice == 55 | 56 | = 1.0 = 57 | Initial version. Please back up your site before installing. 58 | 59 | == License == 60 | 61 | This plugin is licensed under the GPLv2 or later. See https://www.gnu.org/licenses/gpl-2.0.html for full terms. 62 | --------------------------------------------------------------------------------