Super Select Form Field - Add-on

Use 1500+ Icons to create your own custom Radio Buttons, Checkboxes, Dropdown selects and Spinner selects. Absolute Full Customization…use any on/off colors and any on/off icons for each option individually. Includes 70+ animations for selections made and the ability to attach the selection to other fields.

FEATURES INCLUDE

Form Themes - Add-on

Includes 40+ Bootstrap and Material Design Form Themes

Playground

PayPal - Add-on

Start now and recieve payments from NEX-Forms

FEATURES INCLUDE
  • Itemised Billing
  • Field Mapping for item quantity
  • Field Mapping for item amounts
  • Static values for Item Quantities
  • Static values for Item Amounts
  • Overall PayPal setup
  • Currency selection
  • Payment Transaction Tracking
  • Email to any/all options below
    • - before payments
    • - on payment failures
    • - on successful payments
  • Sandbox and Live environment

Cart

Find some comfort and place your order now!

PDF Creator - Add-on

Automaticly create custom PDF's with form submission data

FEATURES INCLUDE
  • Create Custom PDF's
  • Use form data in PDF's
  • Attach PDF's to user emails
  • Attach PDF's to admin emails
  • Export submissions to PDF
  • Export submission reports to PDF

Digital Signatures - Add-on

Captured and display user signatures in your emails and PDF

FEATURES INCLUDE
  • Get Signatures in your Emails
  • Use signatures in PDF's
  • View and download signatures

Form to Post or Page - Add-on

Automaticly create Post or Pages from your form submissions

FEATURES INCLUDE
  • Create new posts from submission data
  • Create new pages from submission data
  • Map form field to be usede as Post/Page Title
  • Map form field to be usede as Post/Page Featured Image
  • Use field data tags to insert field data in to Post/ Page Content
  • Force Post/Page review or publish as pending or draft.
  • Allow or disallow comments

Add your food recipe to our blog...

Quick and Easy Setup

MailChimp - Add-on

Automaticly adds new subscribers from your form submissions

FEATURES INCLUDE
  • Integrates with MailChimp
  • Column field mapping
  • Captures new subscribers

Quick and Easy Setup

GetResponse - Add-on

Automaticly adds new subscribers from your form submissions

FEATURES INCLUDE
  • Integrates with GetResponse
  • Column field mapping
  • Captures new subscribers

Quick and Easy Setup

Conditional Content Blocks - Add-on

Change content blocks in emails and/or PDF's based on user selection or input

FEATURES INCLUDE
  • Change email content sections based on user selection or input.
  • Change PDF content sections based on user selection or input.
  • Change email recipients sections based on user selection or input.
  • Change redirect URL based on user selection or input

How does it work?

Lets create a scenario where we will have 2 types of content displayed when a user select A or B from our field called "Product".

The shortcode is constructed as follows:

[nfccb field="field_name" value="conditional_value"]Content displayed if the field's value is equal to the value specified[/nfccb]

So let say we want to diplay some content but only if a user select A from the Product field. We will add this in our email body or PDF content body:

[nfccb field="product" value="A"]You have chosen product A and here are some info relevant to product B etc etc[/nfccb]

So let say we want to diplay some content but only if a user select B from the Product field. We will add this in our email body or PDF content body:

[nfccb field="product" value="B"]You have chosen product B and here are some info relevant to product B etc etc[/nfccb]

So in your content you will have both these blocks in the same location in your HTML or plain text body, so basically the the content in this area gets replaced according to the selection.

[nfccb field="product" value"A"]You have chosen product A and here are some info relevant to product B etc etc[/nfccb]
[nfccb field="product" value"B"]You have chosen product B and here are some info relevant to product B etc etc[/nfccb]

If A is selected only the content displayed in the shortcode specifying value A will be displayed and not B...and visa versa

This can also be done for Email Recipients, Email Subjects, From Address, From Name and redirects after submit.

Shortcode Processor - Add-on

Run 3rd party shorcodes or your own custom shorcodes within forms

FEATURES INCLUDE
  • Use shorcodes from other plugins in your forms
  • Create your own shorcodes to output you very own PHP in forms
Execute Custom Code in forms with WP Shortcodes!
    
This is custom content generated form a shortcode and is outputted directly inside your form!

How this was done

1. Add the below code to you theme's functions.php file

add_shortcode( 'MY_CUSTOM_SHORTCODE', 'my_custom_php_function' );

function my_custom_php_function($atts){

  $defaults = array(
    'some_content' => ''
  );
  extract( shortcode_atts( $defaults, $atts ) );
  wp_parse_args($atts, $defaults);

  return $some_content;
}



2. Add and HTML element anywhere in your form and change the content to this shortcode:

[MY_CUSTOM_SHORTCODE some_content="this is some custom content generated form a shortcode"]

This is a very simply example but you can output anything like a custom select that is populated by your own database table.