LLMS_Shortcodes_Blocks::show_form_preview( bool $hide )
Determines whether to show the registration and login form in editor preview.
Parameters Parameters
- $hide
-
(bool) (Required) Whether to hide the registration form.
Return Return
(bool)
Source Source
File: includes/shortcodes/class.llms.shortcodes.blocks.php
public function show_form_preview( bool $hide ): bool {
if ( llms_is_editor_block_rendering() ) {
$hide = false;
}
return $hide;
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 7.2.0 | Introduced. |