{"slug":"wp-full-stripe-free","name":"Stripe Payment Forms by WP Full Pay – Accept Credit Card Payments, Donations & Subscriptions","description":"🚀 Create Stripe payment forms for WordPress. Accept credit cards, Apple Pay, donations, subscriptions & more. Easy setup, no coding needed!","author":"Themeisle","active_installs":9000,"version":"8.5.0","wp_org_url":"https://wordpress.org/plugins/wp-full-stripe-free/","is_closed":false,"cleanup":{"has_uninstall_hook":false,"drops_tables_on_uninstall":false,"deletes_options_on_uninstall":false},"tables":[{"table_name":"fullstripe_card_captures","full_table_name":"wp_fullstripe_card_captures","description":"Stores fullstripe card captures data created by this plugin.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"fullstripe_card_update_session","full_table_name":"wp_fullstripe_card_update_session","description":"Stores session data for tracking user or visitor state.","detection_method":"static","confidence":"medium","columns":[{"name":"id","type":"INT","nullable":false,"primary_key":true},{"name":"hash","type":"VARCHAR(191)","nullable":false,"primary_key":false},{"name":"email","type":"VARCHAR(191)","nullable":false,"primary_key":false},{"name":"liveMode","type":"TINYINT(1)","nullable":true,"primary_key":false},{"name":"stripeCustomerId","type":"VARCHAR(100)","nullable":false,"primary_key":false},{"name":"securityCodeRequest","type":"INT","nullable":true,"primary_key":false},{"name":"securityCodeInput","type":"INT","nullable":true,"primary_key":false},{"name":"created","type":"DATETIME","nullable":false,"primary_key":false},{"name":"status","type":"VARCHAR(32)","nullable":false,"primary_key":false}],"create_sql":"CREATE TABLE wp_fullstripe_card_update_session ( id INT NOT NULL AUTO_INCREMENT, hash VARCHAR(191) NOT NULL, email VARCHAR(191) NOT NULL, liveMode TINYINT(1), stripeCustomerId VARCHAR(100) NOT NULL, securityCodeRequest INT DEFAULT 0, securityCodeInput INT DEFAULT 0, created DATETIME NOT NULL, status VARCHAR(32) NOT NULL, PRIMARY KEY (id), KEY hash (hash), KEY email (email), KEY stripeCustomerId (stripeCustomerId), KEY status (status), KEY created (created) ) $charset_collate;\"; // database write/update dbDelta( $sql );"},{"table_name":"fullstripe_checkout_donation_forms","full_table_name":"wp_fullstripe_checkout_donation_forms","description":"Stores form definitions and related configuration.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"fullstripe_checkout_form_submit","full_table_name":"wp_fullstripe_checkout_form_submit","description":"Stores form definitions and related configuration.","detection_method":"static","confidence":"medium","columns":[{"name":"id","type":"INT","nullable":false,"primary_key":true},{"name":"hash","type":"VARCHAR(191)","nullable":false,"primary_key":false},{"name":"formHash","type":"VARCHAR(64)","nullable":false,"primary_key":false},{"name":"formType","type":"VARCHAR(30)","nullable":true,"primary_key":false},{"name":"referrer","type":"VARCHAR(1024)","nullable":false,"primary_key":false},{"name":"postData","type":"TEXT","nullable":false,"primary_key":false},{"name":"liveMode","type":"TINYINT(1)","nullable":true,"primary_key":false},{"name":"created","type":"DATETIME","nullable":false,"primary_key":false},{"name":"status","type":"VARCHAR(32)","nullable":false,"primary_key":false},{"name":"lastMessageTitle","type":"VARCHAR(256)","nullable":true,"primary_key":false},{"name":"lastMessage","type":"VARCHAR(1024)","nullable":true,"primary_key":false},{"name":"processedWithError","type":"INT","nullable":true,"primary_key":false},{"name":"errorMessage","type":"VARCHAR(180)","nullable":true,"primary_key":false},{"name":"relatedStripeEventIDs","type":"TEXT","nullable":true,"primary_key":false}],"create_sql":"CREATE TABLE wp_fullstripe_checkout_form_submit ( id INT NOT NULL AUTO_INCREMENT, hash VARCHAR(191) NOT NULL, formHash VARCHAR(64) NOT NULL, formType VARCHAR(30), referrer VARCHAR(1024) NOT NULL, postData TEXT NOT NULL, checkoutSessionId VARCHAR(191), liveMode TINYINT(1), created DATETIME NOT NULL, status VARCHAR(32) NOT NULL, lastMessageTitle VARCHAR(256), lastMessage VARCHAR(1024), processedWithError INT DEFAULT 0, errorMessage VARCHAR(180), relatedStripeEventIDs TEXT, PRIMARY KEY (id), KEY hash (hash), KEY checkoutSessionId (checkoutSessionId), KEY status (status), KEY liveMode (liveMode), KEY liveModeStatus (liveMode, status) ) $charset_collate;\"; // database write/update dbDelta( $sql );"},{"table_name":"fullstripe_checkout_forms","full_table_name":"wp_fullstripe_checkout_forms","description":"Stores form definitions and related configuration.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"fullstripe_checkout_subscription_forms","full_table_name":"wp_fullstripe_checkout_subscription_forms","description":"Stores form definitions and related configuration.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"fullstripe_donation_forms","full_table_name":"wp_fullstripe_donation_forms","description":"Stores form definitions and related configuration.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"fullstripe_donations","full_table_name":"wp_fullstripe_donations","description":"Stores fullstripe donations data created by this plugin.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"fullstripe_log","full_table_name":"wp_fullstripe_log","description":"A logging table that records activity, events, or audit history.","detection_method":"static","confidence":"medium","columns":[{"name":"id","type":"INT","nullable":false,"primary_key":true},{"name":"created","type":"DATETIME","nullable":false,"primary_key":false},{"name":"module","type":"VARCHAR(64)","nullable":false,"primary_key":false},{"name":"class","type":"VARCHAR(128)","nullable":false,"primary_key":false},{"name":"function","type":"VARCHAR(128)","nullable":false,"primary_key":false},{"name":"level","type":"VARCHAR(16)","nullable":false,"primary_key":false},{"name":"message","type":"VARCHAR(512)","nullable":false,"primary_key":false},{"name":"exception","type":"TEXT","nullable":false,"primary_key":false}],"create_sql":"CREATE TABLE wp_fullstripe_log ( id INT NOT NULL AUTO_INCREMENT, created DATETIME NOT NULL, `module` VARCHAR(64) NOT NULL, `class` VARCHAR(128) NOT NULL, `function` VARCHAR(128) NOT NULL, `level` VARCHAR(16) NOT NULL, `message` VARCHAR(512) NOT NULL, `exception` TEXT NOT NULL, PRIMARY KEY (id), KEY created (created), KEY `module` (`module`), KEY `class` (`class`), KEY `function` (`function`), KEY `level` (`level`) ) $charset_collate;\"; // database write/update dbDelta( $sql );"},{"table_name":"fullstripe_patch_info","full_table_name":"wp_fullstripe_patch_info","description":"Stores fullstripe patch info data created by this plugin.","detection_method":"static","confidence":"medium","columns":[{"name":"id","type":"INT","nullable":false,"primary_key":true},{"name":"patch_id","type":"VARCHAR(191)","nullable":false,"primary_key":false},{"name":"plugin_version","type":"VARCHAR(255)","nullable":false,"primary_key":false},{"name":"applied_at","type":"DATETIME","nullable":false,"primary_key":false},{"name":"description","type":"VARCHAR(500)","nullable":true,"primary_key":false}],"create_sql":"CREATE TABLE wp_fullstripe_patch_info ( id INT NOT NULL AUTO_INCREMENT, patch_id VARCHAR(191) NOT NULL, plugin_version VARCHAR(255) NOT NULL, applied_at DATETIME NOT NULL, description VARCHAR(500), PRIMARY KEY (id), KEY patch_id (patch_id) ) $charset_collate;\"; dbDelta( $sql );"},{"table_name":"fullstripe_payment_forms","full_table_name":"wp_fullstripe_payment_forms","description":"Stores form definitions and related configuration.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"fullstripe_payments","full_table_name":"wp_fullstripe_payments","description":"Stores fullstripe payments data created by this plugin.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"fullstripe_reports","full_table_name":"wp_fullstripe_reports","description":"Stores fullstripe reports data created by this plugin.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"fullstripe_security_code","full_table_name":"wp_fullstripe_security_code","description":"Stores fullstripe security code data created by this plugin.","detection_method":"static","confidence":"medium","columns":[{"name":"id","type":"INT","nullable":false,"primary_key":true},{"name":"sessionId","type":"INT","nullable":false,"primary_key":false},{"name":"securityCode","type":"VARCHAR(191)","nullable":false,"primary_key":false},{"name":"created","type":"DATETIME","nullable":false,"primary_key":false},{"name":"sent","type":"DATETIME","nullable":true,"primary_key":false},{"name":"consumed","type":"DATETIME","nullable":true,"primary_key":false},{"name":"status","type":"VARCHAR(32)","nullable":false,"primary_key":false}],"create_sql":"CREATE TABLE wp_fullstripe_security_code ( id INT NOT NULL AUTO_INCREMENT, sessionId INT NOT NULL, securityCode VARCHAR(191) NOT NULL, created DATETIME NOT NULL, sent DATETIME, consumed DATETIME, status VARCHAR(32) NOT NULL, PRIMARY KEY (id), KEY sessionId (sessionId), KEY securityCode (securityCode), KEY status (status) ) $charset_collate;\"; // database write/update dbDelta( $sql );"},{"table_name":"fullstripe_subscribers","full_table_name":"wp_fullstripe_subscribers","description":"Stores fullstripe subscribers data created by this plugin.","detection_method":"static","confidence":"high","columns":[],"create_sql":null},{"table_name":"fullstripe_subscription_forms","full_table_name":"wp_fullstripe_subscription_forms","description":"Stores form definitions and related configuration.","detection_method":"static","confidence":"high","columns":[],"create_sql":null}],"table_count":16}