Skip to content

Softdiscover/wp-simple-form

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Installation

Plugin ZIP file can be downloaded

To install, Please follow the steps below:

= Via backend of WordPress =

  1. After your download the zip file, log into backend of your WordPress
  2. Go to Plugins > Add New
  3. Click the Upload link
  4. Click Browse and locate the file that you downloaded and click Install Now
  5. 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

How to use

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.

Screenshot

add a new record and press Add new record button

Screenshot

the new record will appear at the bottom

Screenshot

you can get more details clicking on any info, then a modal will be shown with all details of the record

Screenshot

additionally, you can search a record by a keyword, and the record will be shown in the table.

Screenshot

Summary with animation
Screenshot

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published