LLMS_View_Manager::modify_display_free_enroll_form( bool $display )
Modify the displaying of the free enroll form (free access plans).
Description Description
Visitors will never be shown the free enroll form.
Parameters Parameters
- $display
-
(bool) (Required) Whether or not the form is being displayed.
Return Return
(bool)
Source Source
File: includes/class.llms.view.manager.php
public function modify_display_free_enroll_form( $display ) { if ( ! $display || 'visitor' === $this->get_view() ) { return false; } return $display; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
4.2.0 | Introduced. |