// Get submitted field value (works after form submission) $field_value = rgpost( "input_$atts['field_id']" );
// Compare using operator $condition_met = false; switch ( $atts['operator'] ) case '=': $condition_met = ( $field_value == $atts['value'] ); break; case '!=': $condition_met = ( $field_value != $atts['value'] ); break; case 'contains': $condition_met = ( strpos( $field_value, $atts['value'] ) !== false ); break;
return $condition_met ? do_shortcode( $content ) : ''; [gf_conditional form_id="1" field_id="3" value="Option A"] You selected Option A! [/gf_conditional] 🧠 Real-World Examples Example 1: Show a special message after submission [gf_conditional form_id="5" field_id="2" value="Business"] Thanks! A business account manager will contact you. [/gf_conditional] Example 2: Show different content for different selections [gf_conditional form_id="5" field_id="4" value="Yes" operator="="] ✅ Great! We'll send you the guide. [/gf_conditional] [gf_conditional form_id="5" field_id="4" value="No" operator="="] ❌ No problem. You can still browse our resources. [/gf_conditional] 🔁 Alternative: Gravity Forms Merge Tags + Conditional Shortcode You can combine merge tags with conditional logic:
[gravityforms_conditional form_id="1" field_id="2" value="Yes"] This content shows only if field 2 = Yes. [/gravityforms_conditional] Some plugins support multiple operators: = , != , > , < , contains , etc. Add this to your theme’s functions.php file:
add_shortcode( 'gf_conditional', 'gf_conditional_shortcode' ); function gf_conditional_shortcode( $atts, $content = null ) ! $atts['field_id'] ) return '';
$form = GFAPI::get_form( $atts['form_id'] ); if ( ! $form ) return '';
The downloaded Aadhaar PDF is password protected. To open this PDF, you will need e Aadhar password. The password is an 8-character combination of your name and date of birth.
Here are some real examples to create your e aadhar password:
| Name | Year of Birth | Password |
|---|---|---|
| Abhishek Sharma | 1989 | ABHI1989 |
| Seema Saini | 1998 | SEEM1998 |
| Raj Kumar Sahu | 1996 | RAJK1996 |
| Use | Details |
|---|---|
| Identify Proof | You can use your Aadhaar card as ID for things like school admissions or filling out official forms. |
| Address Proof | It works as valid address proof when applying for a passport, driver's license, or setting up home utilities. |
| Banking & Payments Services | Aadhaar lets you open bank accounts, do KYC, get government money, and even make fingerprint-based payments at micro-ATMs. |
| ITR Filing | Mandatory to link Aadhar with PAN for filing ITR and availing tax benefits. |
| Pension & Provident Fund | It's needed to claim your pension or withdraw money from your PF account. |
| Getting a SIM Card | You need an Aadhaar to get a new mobile SIM, making the process quick and hassle-free. |
| Income Tax Filing | Aadhaar helps you log in and use many online government services safely. |
No need to wait in lines or worry about losing your Aadhaar. With Online Aadhar Card Download services, you can get your card in just a few minutes. Always use official apps or websites like My Aadhaar, DigiLocker, UMANG, or mAadhaar for safe downloads and avoid fraudulent websites accessing your data.
// Get submitted field value (works after form submission) $field_value = rgpost( "input_$atts['field_id']" );
// Compare using operator $condition_met = false; switch ( $atts['operator'] ) case '=': $condition_met = ( $field_value == $atts['value'] ); break; case '!=': $condition_met = ( $field_value != $atts['value'] ); break; case 'contains': $condition_met = ( strpos( $field_value, $atts['value'] ) !== false ); break;
return $condition_met ? do_shortcode( $content ) : ''; [gf_conditional form_id="1" field_id="3" value="Option A"] You selected Option A! [/gf_conditional] 🧠 Real-World Examples Example 1: Show a special message after submission [gf_conditional form_id="5" field_id="2" value="Business"] Thanks! A business account manager will contact you. [/gf_conditional] Example 2: Show different content for different selections [gf_conditional form_id="5" field_id="4" value="Yes" operator="="] ✅ Great! We'll send you the guide. [/gf_conditional] [gf_conditional form_id="5" field_id="4" value="No" operator="="] ❌ No problem. You can still browse our resources. [/gf_conditional] 🔁 Alternative: Gravity Forms Merge Tags + Conditional Shortcode You can combine merge tags with conditional logic:
[gravityforms_conditional form_id="1" field_id="2" value="Yes"] This content shows only if field 2 = Yes. [/gravityforms_conditional] Some plugins support multiple operators: = , != , > , < , contains , etc. Add this to your theme’s functions.php file:
add_shortcode( 'gf_conditional', 'gf_conditional_shortcode' ); function gf_conditional_shortcode( $atts, $content = null ) ! $atts['field_id'] ) return '';
$form = GFAPI::get_form( $atts['form_id'] ); if ( ! $form ) return '';