Plugin ZIP file can be downloaded
To install, Please follow the steps below:
= Via backend of WordPress =
- After your download the zip file, log into backend of your WordPress
- Go to Plugins > Add New
- Click the Upload link
- Click Browse and locate the file that you downloaded and click Install Now
- After Wordpress has finished unpacking the file click on Activate Plugin
after installed, be aware that there are some themes that don't have jquery installed like twentytwentyfour theme which comes by default in fresh WP install. To fix this, just go function.php (wp-content/themes/twentytwentyfour/functions.php) of the theme and add the next:
function add_jquery()
{
wp_enqueue_script('jquery');
}
add_action('init', 'add_jquery');
then jquery should be loaded in frontend
Create a page or post, then add the two next shortcodes to create records and show data:
[my_form]
[my_list]
then on frontend, a form and records list will be loaded. if there are no records, it will load empty.
add a new record and press Add new record button
the new record will appear at the bottom
you can get more details clicking on any info, then a modal will be shown with all details of the record
additionally, you can search a record by a keyword, and the record will be shown in the table.