is_landing_page(); } public function name() { return __( 'Landing Page Content', 'thrive-cb' ); } /** * Either to display or not the element in the sidebar menu * * @return bool */ public function hide() { return true; } /** * The HTML is generated from js * * @return string */ protected function html() { return ''; } /** * Hide all general components. * * @return array */ public function own_components() { return [ 'typography' => [ 'hidden' => true ], 'animation' => [ 'hidden' => true ], 'responsive' => [ 'hidden' => true ], 'styles-templates' => [ 'hidden' => true ], 'layout' => [ 'disabled_controls' => [ '.tve-advanced-controls', ], 'config' => [ 'Width' => [ 'important' => true, ], ], ], 'borders' => [ 'config' => [ 'Borders' => [ 'important' => true, ], 'Corners' => [ 'important' => true, ], ], ], 'shadow' => [ 'config' => [ 'important' => true, 'default_shadow' => 'none', ], ], ]; } }