|
Server : LiteSpeed System : Linux server104.web-hosting.com 4.18.0-513.24.1.lve.1.el8.x86_64 #1 SMP Thu May 9 15:10:09 UTC 2024 x86_64 User : saleoqej ( 6848) PHP Version : 8.0.30 Disable Function : NONE Directory : /home/saleoqej/chijamzacademy.com/wp-content/plugins/thrive-visual-editor/inc/views/ |
<?php /* * settings drawer (right small sidebar) */ $has_zip_archive = class_exists( 'ZipArchive', false ); ?> <div id="settings" class="tcb-relative"> <div class="state-default state"> <span class="label tcb-hide"><?php echo esc_html__( 'Settings', 'thrive-cb' ); ?></span> <div class="list"> <?php if ( tcb_editor()->is_landing_page() ) : ?> <a href="#" class="nav s-setting" data-nav="global"><span class="s-name"><?php echo esc_html__( 'Global', 'thrive-cb' ); ?></span><?php tcb_icon( 'long-arrow-right-light' ); ?></a> <a href="#" class="click s-setting" data-fn="lpSettings"> <span class="s-name"><?php echo esc_html__( 'Landing Page Settings', 'thrive-cb' ); ?></span> <?php tcb_icon( 'long-arrow-right-light' ); ?> </a> <?php elseif ( tcb_editor()->is_lightbox() ) : ?> <a href="#" class="click s-setting" data-fn="select_element" data-el=".tve_p_lb_content"> <span class="s-name"><?php echo esc_html__( 'Thrive Lightbox Settings', 'thrive-cb' ); ?></span> <?php tcb_icon( 'cog-light' ); ?> </a> <?php endif ?> <a href="#" class="nav s-setting" data-nav="advanced"><span class="s-name"><?php echo esc_html__( 'Advanced Settings', 'thrive-cb' ); ?></span><?php tcb_icon( 'long-arrow-right-light' ); ?></a> <span class="sep"></span> <?php if ( tcb_editor()->is_landing_page() ) : ?> <a href="#" class="click s-setting" data-fn="saveTemplateLP"><span class="s-name"><?php echo esc_html__( 'Save Landing Page', 'thrive-cb' ); ?></span></a> <a href="#" class="<?php echo $has_zip_archive ? 'click' : 'disabled-children'; ?> s-setting" data-fn="exportLP" data-position="top" data-tooltip="<?php esc_attr_e( $has_zip_archive ? '' : __( 'The PHP ZipArchive extension must be enabled in order to use this functionality. Please contact your hosting provider.', 'thrive-cb' ) ); ?>"><span class="s-name"><?php echo esc_html__( 'Export Landing Page', 'thrive-cb' ); ?></span></a> <span class="sep"></span> <?php endif; ?> <?php if ( tcb_editor()->can_use_landing_pages() ) : ?> <a href="#" class="<?php echo $has_zip_archive ? 'click' : 'disabled-children'; ?> s-setting" data-fn="importLP" data-position="top" data-tooltip="<?php esc_attr_e( $has_zip_archive ? '' : __( 'The PHP ZipArchive extension must be enabled in order to use this functionality. Please contact your hosting provider.', 'thrive-cb' ) ); ?>"><span class="s-name"><?php echo esc_html__( 'Import Landing Page', 'thrive-cb' ); ?></span></a> <?php endif; ?> <?php if ( tcb_editor()->allow_import_content() ) : ?> <a href="#" class="<?php echo $has_zip_archive ? 'click' : 'disabled-children'; ?> s-setting" data-fn="importContent" data-position="top" data-tooltip="<?php esc_attr_e( $has_zip_archive ? '' : __( 'The PHP ZipArchive extension must be enabled in order to use this functionality. Please contact your hosting provider.', 'thrive-cb' ) ); ?>"><span class="s-name"><?php echo esc_html__( 'Import Content', 'thrive-cb' ); ?></span></a> <?php endif; ?> <?php if ( tcb_editor()->allow_export_content() ) : ?> <a href="#" class="<?php echo $has_zip_archive ? 'click' : 'disabled-children'; ?> s-setting" data-fn="exportContent" data-position="top" data-tooltip="<?php esc_attr_e( $has_zip_archive ? '' : __( 'The PHP ZipArchive extension must be enabled in order to use this functionality. Please contact your hosting provider.', 'thrive-cb' ) ); ?>"><span class="s-name"><?php echo esc_html__( 'Export Content', 'thrive-cb' ); ?></span></a> <?php endif; ?> <?php if ( tcb_editor()->has_save_template_button() ) : ?> <a href="#" class="click s-setting" data-fn="saveTemplate"><span class="s-name"><?php echo esc_html__( 'Save as Template', 'thrive-cb' ); ?></span></a> <?php endif; ?> <?php /** * Action hook. Allows injecting custom menu options under the "Templates Setup" tab */ do_action( 'tcb_settings_links' ); ?> </div> </div> <div class="state-advanced state"> <span class="label tcb-hide"><?php echo esc_html__( 'Advanced Settings', 'thrive-cb' ); ?></span> <div class="list"> <a href="#" class="click s-setting" data-fn="html"><span class="s-name"><?php echo esc_html__( 'View Page Source (HTML)', 'thrive-cb' ); ?></span><?php tcb_icon( 'code-regular' ); ?></a> <a href="#" class="click s-setting" data-fn="css"><span class="s-name"><?php echo esc_html__( 'Custom CSS', 'thrive-cb' ); ?></span><?php tcb_icon( 'css3-brands' ); ?></a> <?php if ( tcb_editor()->can_use_page_events() ) : ?> <a href="#" class="click s-setting" data-fn="page_events"><span class="s-name"><?php echo esc_html__( 'Page Events', 'thrive-cb' ); ?></span></a> <?php endif ?> <?php if ( tcb_editor()->is_landing_page() ) : ?> <a href="#" data-nav="custom-scripts" class="s-setting"><span class="s-name"><?php echo esc_html__( 'Custom Scripts', 'thrive-cb' ); ?></span><?php tcb_icon( 'long-arrow-right-light' ); ?></a> <a href="#" data-nav="head-css" class="s-setting"><span class="s-name"><?php echo esc_html__( 'CSS in the <head> section', 'thrive-cb' ); ?></span><?php tcb_icon( 'long-arrow-right-light' ); ?></a> <?php endif ?> <a href="#" class="click s-setting" data-fn="reminders"> <?php $label = (int) get_option( 'tve_display_save_notification', 1 ) ? __( 'Turn Off Save Reminders', 'thrive-cb' ) : __( 'Turn On Save Reminders', 'thrive-cb' ); ?> <span class="s-name"><?php echo $label; ?></span><?php tcb_icon( 'bell-slash-light' ); ?> </a> <a href="#" data-nav="asset-optimization" class="s-setting"><span class="s-name"><?php echo esc_html__( 'Asset Optimization', 'thrive-cb' ); ?></span><?php tcb_icon( 'long-arrow-right-light' ); ?></a> </div> </div> <?php if ( tcb_editor()->is_landing_page() ) : ?> <?php tcb_template( 'custom-scripts' ); ?> <div class="state-lp-settings state"> <span class="label tcb-hide"><?php echo esc_html__( 'Landing Page Settings', 'thrive-cb' ); ?></span> <div class="list"> <a href="#" class="click s-setting" data-fn="lpRevert"> <span class="s-name"><?php echo esc_html__( 'Revert to Theme', 'thrive-cb' ); ?></span><?php tcb_icon( 'undo-regular' ); ?> </a> </div> </div> <div class="state-head-css state"> <span class="label tcb-hide"><?php echo esc_html__( 'CSS in <head>', 'thrive-cb' ); ?></span> <section> <div class="field-section checkbox"></div> <div class="field-section"> Thrive Architect will strip out any Custom CSS from the <head> section from all Landing Pages built with it. Usually, this is extra CSS that is not needed throughout the Landing Page. By ticking the checkbox above, you will disable this functionality, and all Custom CSS will be included. Please keep in mind that including this Custom CSS might prevent some of the Landing Page settings to function properly, such as: background color, background image etc. </div> </section> </div> <div class="state-global state"> <span class="label tcb-hide"><?php echo esc_html__( 'Global settings', 'thrive-cb' ); ?></span> <section> <div class="field-section s-setting" id="p-header"> <label class="s-name"><?php echo esc_html__( 'Header', 'thrive-cb' ); ?></label> <a href="javascript:void(0)" class="style-input dots click" data-fn="addSection" data-type="header"> <span class="value tcb-truncate" data-default="<?php echo esc_html__( '[no header added]', 'thrive-cb' ); ?>"><?php echo esc_html__( '[no header added]', 'thrive-cb' ); ?></span> <?php tcb_icon( 'pen-regular' ); ?> </a> </div> <div class="field-section s-setting" id="p-footer"> <label class="s-name"><?php echo esc_html__( 'Footer', 'thrive-cb' ); ?></label> <a href="javascript:void(0)" class="style-input dots click" data-fn="addSection" data-type="footer"> <span class="value tcb-truncate" data-default="<?php echo esc_html__( '[no footer added]', 'thrive-cb' ); ?>"><?php echo esc_html__( '[no footer added]', 'thrive-cb' ); ?></span> <?php tcb_icon( 'pen-regular' ); ?> </a> </div> </section> </div> <?php endif; ?> <?php tcb_template( 'asset-optimization' ); ?> </div>