LLMS_Lab_Pricing_Table_Module::show_table( bool $enrollment )
Always show the pricing table when the builder is active.
Parameters Parameters
- $enrollment
-
(bool) (Required) Enrollment status of the current user.
Return Return
(bool)
Source Source
File: includes/beaver-builder/modules/pricing-table/class.llms.lab.pricing.table.module.php
public function show_table( $enrollment ) {
if ( FLBuilderModel::is_builder_active() ) {
return false;
}
return $enrollment;
}
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
| Version | Description |
|---|---|
| 1.3.0 | Introduced. |