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.


Top ↑

Return Return

(bool)


Top ↑

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;
	}


Top ↑

Changelog Changelog

Changelog
Version Description
7.2.0 Introduced.

Top ↑

User Contributed Notes User Contributed Notes

You must log in before being able to contribute a note or feedback.