Hello @rrishabh,
I am really sorry to see that you did not get any reply from our support.
When you install weForms there are three tables () created in the database. I think prefix_weforms_entrymeta table was not created. Please check the database tables and create entrymeta table by running the following query in the databaase.
CREATE TABLE
wp_weforms_entrymeta` (
meta_id
bigint(20) unsigned NOT NULL AUTO_INCREMENT,
weforms_entry_id
bigint(20) unsigned DEFAULT NULL,
meta_key
varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
meta_value
longtext COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (meta_id
),
KEY meta_key
(meta_key
(191)),
KEY entry_id
(weforms_entry_id
)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;`
You need to replace wp prefix from wp_weforms_entrymeta with your database prefix.
Thanks for your understanding.