We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97efcbe commit 317129fCopy full SHA for 317129f
tests/test-shortcode.php
@@ -197,6 +197,11 @@ public function testShortcodeTextInput() {
197
198
$html = do_shortcode('[geoip_detect2_text_input name="yourcity" property="country" lang="fr" id="thisismyid" class="myclassname" default="Paris" required="true"]');
199
$this->assertContains('value="Allemagne"', $html);
200
+
201
+ $html = do_shortcode('[geoip_detect2_text_input name="postal" property="location.timeZone" type="hidden"]');
202
+ $this->assertContains('name="postal"', $html);
203
+ $this->assertContains('type="hidden"', $html);
204
+ $this->assertContains('value="Europe/Berlin"', $html);
205
}
206
207
/**
0 commit comments