BossBey File Manager
PHP:
8.2.30
OS:
Linux
User:
imagivibe
Root
/
home
/
imagivibe
/
public_html
/
CTR
/
wp-content
/
themes
/
porto
/
inc
/
admin
/
setup_wizard
π€ Upload
π New File
π New Folder
Close
Editing: speed_optimize_wizard.php
<?php /** * Porto Speed Optimze Wizard Class */ if ( ! defined( 'ABSPATH' ) ) { exit; } if ( ! class_exists( 'Porto_Speed_Optimize_Wizard' ) ) { /** * Porto_Speed_Optimize_Wizard class */ class Porto_Speed_Optimize_Wizard { protected $version = '1.1.0'; protected $theme_name = ''; protected $step = ''; protected $steps = array(); protected $page_slug; protected $page_url; private static $instance = null; protected $tgmpa_instance; protected $tgmpa_menu_slug = 'tgmpa-install-plugins'; protected $tgmpa_url = 'themes.php?page=tgmpa-install-plugins'; public static function get_instance() { if ( ! self::$instance ) { self::$instance = new self(); } return self::$instance; } public function __construct() { $this->init_globals(); $this->init_actions(); } public function init_globals() { $current_theme = wp_get_theme(); $this->theme_name = strtolower( preg_replace( '#[^a-zA-Z]#', '', $current_theme->get( 'Name' ) ) ); $this->page_slug = 'porto-speed-optimize-wizard'; $this->page_url = 'admin.php?page=' . $this->page_slug; } public function init_actions() { if ( apply_filters( $this->theme_name . '_enable_speed_optimize_wizard', true ) && current_user_can( 'manage_options' ) ) { if ( class_exists( 'TGM_Plugin_Activation' ) && isset( $GLOBALS['tgmpa'] ) ) { add_action( 'init', array( $this, 'get_tgmpa_instanse' ), 30 ); add_action( 'init', array( $this, 'set_tgmpa_url' ), 40 ); } add_action( 'admin_menu', array( $this, 'admin_menus' ), 12 ); add_action( 'wp_ajax_porto_speed_optimize_wizard_plugins', array( $this, 'ajax_plugins' ) ); add_action( 'wp_ajax_porto_speed_optimize_wizard_shortcodes', array( $this, 'get_unused_shortcodes' ) ); if ( isset( $_GET['page'] ) && $this->page_slug === $_GET['page'] ) { add_action( 'wp_title', array( $this, 'page_title' ) ); add_action( 'admin_init', array( $this, 'init_wizard_steps' ), 30 ); add_action( 'admin_enqueue_scripts', array( $this, 'enqueue' ), 30 ); } } add_action( 'upgrader_post_install', array( $this, 'upgrader_post_install' ), 10, 2 ); } public function page_title() { return esc_html__( 'Theme › Speed Optimize Wizard', 'porto' ); } public function upgrader_post_install( $return, $theme ) { if ( is_wp_error( $return ) ) { return $return; } if ( get_stylesheet() != $theme ) { return $return; } update_option( 'porto_speed_optimize_complete', false ); return $return; } public function admin_menus() { add_submenu_page( 'porto', esc_html__( 'Speed Optimize Wizard', 'porto' ), esc_html__( 'Speed Optimize Wizard', 'porto' ), 'manage_options', $this->page_slug, array( $this, 'speed_optimize_wizard_content' ) ); } public function init_wizard_steps() { $this->steps = array( 'introduction' => array( 'name' => esc_html__( 'Welcome', 'porto' ), 'view' => array( $this, 'porto_speed_optimize_wizard_welcome' ), 'handler' => array( $this, 'porto_speed_optimize_wizard_welcome_save' ), ), ); $this->steps['shortcodes'] = array( 'name' => esc_html__( 'WPBakery & Shortcodes', 'porto' ), 'view' => array( $this, 'porto_speed_optimize_wizard_shortcodes' ), 'handler' => array( $this, 'porto_speed_optimize_wizard_shortcodes_save' ), ); $this->steps['revslider'] = array( 'name' => esc_html__( 'Revolution Slider', 'porto' ), 'view' => array( $this, 'porto_speed_optimize_wizard_revslider' ), 'handler' => array( $this, 'porto_speed_optimize_wizard_revslider_save' ), ); $this->steps['performance'] = array( 'name' => esc_html__( 'Performance', 'porto' ), 'view' => array( $this, 'porto_speed_optimize_wizard_performance' ), 'handler' => array( $this, 'porto_speed_optimize_wizard_performance_save' ), ); $this->steps['general'] = array( 'name' => esc_html__( 'Other Minify', 'porto' ), 'view' => array( $this, 'porto_speed_optimize_wizard_general' ), 'handler' => array( $this, 'porto_speed_optimize_wizard_general_save' ), ); $this->steps['advanced'] = array( 'name' => esc_html__( 'Advanced', 'porto' ), 'view' => array( $this, 'porto_speed_optimize_wizard_advanced' ), 'handler' => array( $this, 'porto_speed_optimize_wizard_advanced_save' ), ); $this->steps['next_steps'] = array( 'name' => esc_html__( 'Final Optimize', 'porto' ), 'view' => array( $this, 'porto_speed_optimize_wizard_ready' ), 'handler' => '', ); $this->steps = apply_filters( $this->theme_name . '_speed_optimize_wizard_steps', $this->steps ); } /** * Display the setup wizard */ public function enqueue() { if ( empty( $_GET['page'] ) || $this->page_slug !== $_GET['page'] ) { return; } global $porto_settings_optimize; wp_register_script( PORTO_WC_103_PREFIX . 'jquery-blockui', PORTO_URI . '/inc/admin/setup_wizard/assets/js/jquery.blockUI.js', array( 'jquery' ), '2.70', true ); wp_register_script( 'porto-speed-optimize', PORTO_URI . '/inc/admin/setup_wizard/assets/js/setup-wizard.min.js', array( 'jquery', PORTO_WC_103_PREFIX . 'jquery-blockui' ), $this->version ); wp_localize_script( 'porto-speed-optimize', 'porto_speed_optimize_wizard_params', array( 'wpnonce' => wp_create_nonce( 'porto_speed_optimize_wizard_nonce' ), 'shortcodes_to_remove' => isset( $porto_settings_optimize['shortcodes_to_remove'] ) ? $porto_settings_optimize['shortcodes_to_remove'] : false, ) ); wp_enqueue_script( 'porto-speed-optimize' ); wp_enqueue_style( 'porto-speed-optimize-fonts', '//fonts.googleapis.com/css?family=Poppins%3A400%2C500%2C600%2C700&ver=5.3.2' ); wp_enqueue_style( 'porto-speed-optimize', PORTO_URI . '/inc/admin/setup_wizard/assets/css/style.css', array( 'porto_admin' ), $this->version ); } public function get_step_link( $step ) { return add_query_arg( 'step', $step, esc_url( admin_url( 'admin.php?page=' . $this->page_slug ) ) ); } public function get_next_step_link() { $keys = array_keys( $this->steps ); return add_query_arg( 'step', $keys[ array_search( $this->step, array_keys( $this->steps ) ) + 1 ], remove_query_arg( 'translation_updated' ) ); } public function get_tgmpa_instanse() { $this->tgmpa_instance = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); } public function set_tgmpa_url() { $this->tgmpa_menu_slug = ( property_exists( $this->tgmpa_instance, 'menu' ) ) ? $this->tgmpa_instance->menu : $this->tgmpa_menu_slug; $this->tgmpa_menu_slug = apply_filters( $this->theme_name . '_theme_setup_wizard_tgmpa_menu_slug', $this->tgmpa_menu_slug ); $tgmpa_parent_slug = ( property_exists( $this->tgmpa_instance, 'parent_slug' ) && 'themes.php' !== $this->tgmpa_instance->parent_slug ) ? 'admin.php' : 'themes.php'; $this->tgmpa_url = apply_filters( $this->theme_name . '_theme_setup_wizard_tgmpa_url', $tgmpa_parent_slug . '?page=' . $this->tgmpa_menu_slug ); } /** * Output the steps */ public function setup_wizard_steps() { $ouput_steps = $this->steps; array_shift( $ouput_steps ); ?> <ol class="porto-setup-steps"> <?php foreach ( $ouput_steps as $step_key => $step ) : ?> <?php $show_link = true; $li_class_escaped = ''; if ( $step_key === $this->step ) { $li_class_escaped = 'active'; } elseif ( array_search( $this->step, array_keys( $this->steps ) ) > array_search( $step_key, array_keys( $this->steps ) ) ) { $li_class_escaped = 'done'; } if ( $step_key === $this->step ) { $show_link = false; } ?> <li class="<?php echo esc_attr( $li_class_escaped ); ?>"> <?php if ( $show_link ) { ?> <a href="<?php echo esc_url( $this->get_step_link( $step_key ) ); ?>"><?php echo esc_html( $step['name'] ); ?></a> <?php } else { echo '<a href="#" class="nolink">' . esc_html( $step['name'] ) . '</a>'; } ?> </li> <?php endforeach; ?> </ol> <?php } /** * Output the content for the current step */ public function speed_optimize_wizard_content() { if ( empty( $_GET['page'] ) || $this->page_slug !== $_GET['page'] ) { return; } $this->step = isset( $_GET['step'] ) ? sanitize_key( $_GET['step'] ) : current( array_keys( $this->steps ) ); $show_content = true; if ( ! empty( $_REQUEST['save_step'] ) && isset( $this->steps[ $this->step ]['handler'] ) ) { $show_content = call_user_func( $this->steps[ $this->step ]['handler'] ); } ?> <div class="wrap"> <h1 class="screen-reader-text"><?php esc_html_e( 'Speed Optimize Wizard', 'porto' ); ?></h1> </div> <div class="porto-setup-wizard porto-speed-optimize-wizard wrap"> <?php porto_get_template_part( 'inc/admin/admin_pages/header', null, array( 'active_item' => 'optimize_wizard', 'title' => __( 'Speed Optimize Wizard', 'porto' ), 'subtitle' => __( 'This Speed Optimize Wizard is introduced to optimize all resources that are unnecessary for your site content.', 'porto' ), ) ); $this->setup_wizard_steps(); ?> <main> <section> <?php if ( $show_content ) { isset( $this->steps[ $this->step ] ) ? call_user_func( $this->steps[ $this->step ]['view'] ) : false; } ?> </section> </main> </div> <?php Porto()->view_footer(); } /** * Welcome step */ public function porto_speed_optimize_wizard_welcome() { ?> <?php /* translators: %s: Theme name */ ?> <h2><?php printf( esc_html__( 'Welcome to the Speed Optimize Wizard for %s.', 'porto' ), wp_get_theme() ); ?></h2> <p class="lead" style="font-size: 14px;"><?php esc_html_e( 'This Speed Optimize Wizard is introduced to optimize all resources that are unnecessary for your site content. We experienced many customers asking to remove unused resources as customers use certain feature from bunch of Porto features. Each steps have enough description about how it works. Some options may occur some conflicts if your site is still in development progress, we recommend you to enable all options once site development is completed.', 'porto' ); ?></p> <p class="light"><em><i class="fas fa-info-circle"></i> <?php esc_html_e( 'No time right now?', 'porto' ); ?></em> <?php esc_html_e( "If you don't want to go through the wizard, you can skip and return to the WordPress dashboard. Come back anytime if you change your mind!", 'porto' ); ?></p> <p class="porto-setup-actions step"> <a href="<?php echo esc_url( wp_get_referer() && ! strpos( wp_get_referer(), 'update.php' ) ? wp_get_referer() : admin_url( '' ) ); ?>" class="btn btn-borders"><i class="fas fa-chevron-left me-2"></i><?php esc_html_e( 'Not right now', 'porto' ); ?></a> <a href="<?php echo esc_url( $this->get_next_step_link() ); ?>" class="btn btn-primary button-next"><?php esc_html_e( "Let's Go!", 'porto' ); ?><i class="fas fa-chevron-right ms-2"></i></a> </p> <?php } public function porto_speed_optimize_wizard_welcome_save() { check_admin_referer( 'porto-speed-optimize' ); return false; } /** * Shortcodes Optimization Step */ public function porto_speed_optimize_wizard_shortcodes() { global $porto_settings_optimize; ?> <h2><?php esc_html_e( 'Optimize WPBakery & Shortcodes', 'porto' ); ?></h2> <p class="lead"><?php esc_html_e( 'This will help you to optimize WPBakery and Porto shortcodes css files by removing unused shortcodes\' style', 'porto' ); ?></p> <?php if ( isset( $_POST['porto_speed_optimize_compile_shortcodes'] ) && ! $_POST['porto_speed_optimize_compile_shortcodes'] ) { echo '<div class="notice-error notice-alt"><p>' . esc_html__( 'Failed Shortcodes CSS compilation!', 'porto' ) . '</p></div>'; } ?> <form action="" method="post"> <p style="margin-bottom: 8px;"><?php esc_html_e( 'Below shortcodes are never used in your site content. By choosing below shortcodes, you can remove all resources related to those features. This will reduce hundreds of KB of page size.', 'porto' ); ?></p> <p class="notice-warning notice-alt" style="font-size: 14px; padding: 5px 10px;"><?php esc_html_e( 'Attention: You should uncheck necessary shortcodes and compile again to use removed shortcodes features.', 'porto' ); ?></p> <p class="mb-1"><?php esc_html_e( 'Please select shortcodes to remove.', 'porto' ); ?></p> <label class="checkbox"> <input type="checkbox" id="toggle_select"> <?php esc_html_e( 'Toggle All', 'porto' ); ?> </label> <style> .shortcode_list { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; min-height: 200px; } .shortcode_list li { width: 25%; margin-bottom: 4px; padding: 3px 10px 0; box-sizing: border-box; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 24px } .shortcode_list li .checkbox { font-size: 13px; font-weight: 400; word-break: break-all; } .shortcode_list .blockOverlay:before { content: 'Loading unused shortcodes...'; position: absolute; top: 50%; margin-top: -10px; left: 0; width: 100%; text-align: center;font-size: inherit; animation: none; background: none; } @media (max-width: 992px ) { .shortcode_list li { width: 33.3333%; } } @media (max-width: 480px ) { .shortcode_list li { width: 100%; } } </style> <ul class="shortcode_list"></ul> <p class="porto-setup-actions step"> <a href="<?php echo esc_url( $this->get_next_step_link() ); ?>" class="btn btn-dark button-next"><?php esc_html_e( 'Skip this step', 'porto' ); ?></a> <button type="submit" name="save_step" class="btn btn-primary button-next" disabled="disabled" value="<?php esc_attr_e( 'Compile & Continue', 'porto' ); ?>"><?php esc_html_e( 'Compile & Continue', 'porto' ); ?><i class="fas fa-chevron-right ms-2"></i></button> <?php wp_nonce_field( 'porto-speed-optimize' ); ?> </p> </form> <script> jQuery("#toggle_select").on('click', function() { if (jQuery(this).is(":checked")) { jQuery(this).closest('form').find('input[type="checkbox"]').prop('checked', true); } else { jQuery(this).closest('form').find('input[type="checkbox"]').prop('checked', false); } }); </script> <?php } public function porto_speed_optimize_wizard_shortcodes_save() { check_admin_referer( 'porto-speed-optimize' ); require_once( PORTO_ADMIN . '/theme_options/settings.php' ); require_once( PORTO_ADMIN . '/theme_options/save_settings.php' ); global $porto_settings_optimize; if ( isset( $_POST['shortcodes'] ) && ! empty( $_POST['shortcodes'] ) ) { $porto_settings_optimize['shortcodes_to_remove'] = array_map( 'sanitize_text_field', $_POST['shortcodes'] ); } else { unset( $porto_settings_optimize['shortcodes_to_remove'] ); } update_option( 'porto_settings_optimize', $porto_settings_optimize ); $result = porto_compile_css( 'shortcodes' ); if ( $result ) { wp_redirect( esc_url_raw( $this->get_next_step_link() ) ); exit; } else { $_POST['porto_speed_optimize_compile_shortcodes'] = false; return true; } } /** * Revolution Slider Optimization Step */ public function porto_speed_optimize_wizard_revslider() { global $porto_settings_optimize, $porto_settings; $rev_pages = $this->get_used_shortcode_list( array( 'rev_slider', 'rev_slider_vc' ), true ); $portfolio_use_rev = false; if ( isset( $porto_settings['portfolio-content-layout'] ) && 'carousel' == $porto_settings['portfolio-content-layout'] ) { $portfolio_use_rev = true; } else { $args = array( 'post_type' => 'portfolio', 'post_status' => 'publish', 'posts_per_page' => 20, 'meta_query' => array( array( 'key' => 'portfolio_layout', 'value' => 'carousel', ), ), ); $query = new WP_Query( $args ); if ( $query->have_posts() ) { $portfolio_use_rev = true; while ( $query->have_posts() ) { $query->the_post(); $rev_pages[] = get_the_ID(); } } wp_reset_postdata(); } if ( ! $portfolio_use_rev ) { foreach ( $rev_pages as $page_id ) { if ( get_post_type( $page_id ) == 'portfolio' ) { $portfolio_use_rev = true; break; } } } if ( $portfolio_use_rev ) { $portfolio_pages = $this->get_used_shortcode_list( array( 'porto_portfolios', 'porto_recent_portfolios' ), true, array( 'ajax_load' => 'yes' ) ); $rev_pages = array_unique( array_merge( $rev_pages, $portfolio_pages ) ); } $portfolio_name = empty( $porto_settings['portfolio-name'] ) ? esc_html__( 'Portfolios', 'porto' ) : $porto_settings['portfolio-name']; ?> <h2><?php esc_html_e( 'Optimize Revolution Slider', 'porto' ); ?></h2> <p class="lead"><?php esc_html_e( 'This will help you to avoid loading revolution slider js/css resources for the pages that does not use revolution slider feature.', 'porto' ); ?></p> <?php if ( ! empty( $rev_pages ) ) : ?> <?php /* translators: %s: Page names which using rev sliders */ ?> <p style="margin-bottom: 5px;"><?php printf( esc_html__( 'Only %sbelow pages are using revolution slider feature.', 'porto' ), ( $portfolio_use_rev ? sprintf( esc_html__( '%s and ', 'porto' ), $portfolio_name ) : '' ) ); ?></p> <ul> <?php foreach ( $rev_pages as $page_id ) { $page = get_post( $page_id ); if ( $page ) { echo '<li>' . esc_html( $page->post_type ) . ': <a href="' . esc_url( get_permalink( $page_id ) ) . '" target="_blank">' . esc_html( $page->post_title ) . '</a></li>'; } } ?> </ul> <p style="margin: 5px 0 15px;"><?php esc_html_e( 'By choosing this option rest pages will not load revolution js/css resources that are around 200KB.', 'porto' ); ?></p> <?php endif; ?> <form action="" method="post"> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="optimize_revslider" <?php echo isset( $porto_settings_optimize['optimize_revslider'] ) ? checked( $porto_settings_optimize['optimize_revslider'], true, false ) : ''; ?>> <?php esc_html_e( 'Optimize Revolution Slider', 'porto' ); ?> </label> <input type="hidden" name="portfolio_use_rev" value="<?php echo ! $portfolio_use_rev ? 'false' : 'true'; ?>" /> <input type="hidden" name="rev_pages" value="<?php echo implode( ',', $rev_pages ); ?>" /> <p></p> <p class="porto-setup-actions step"> <a href="<?php echo esc_url( $this->get_next_step_link() ); ?>" class="btn btn-dark button-next"><?php esc_html_e( 'Skip this step', 'porto' ); ?></a> <button type="submit" name="save_step" class="btn btn-primary button-next" value="<?php esc_attr_e( 'Save & Continue', 'porto' ); ?>"><?php esc_html_e( 'Save & Continue', 'porto' ); ?><i class="fas fa-chevron-right ms-2"></i></button> <?php wp_nonce_field( 'porto-speed-optimize' ); ?> </p> </form> <?php } public function porto_speed_optimize_wizard_revslider_save() { check_admin_referer( 'porto-speed-optimize' ); global $porto_settings_optimize, $porto_settings; if ( isset( $_POST['optimize_revslider'] ) && 'true' == $_POST['optimize_revslider'] && isset( $_POST['rev_pages'] ) ) { $porto_settings_optimize['optimize_revslider'] = true; if ( $_POST['rev_pages'] ) { $porto_settings_optimize['optimize_revslider_pages'] = explode( ',', sanitize_text_field( $_POST['rev_pages'] ) ); } $porto_settings_optimize['optimize_revslider_portfolio'] = ( isset( $porto_settings['portfolio-archive-ajax'] ) && $porto_settings['portfolio-archive-ajax'] && 'true' == $_POST['portfolio_use_rev'] ? true : false ); } else { unset( $porto_settings_optimize['optimize_revslider_pages'] ); unset( $porto_settings_optimize['optimize_revslider_portfolio'] ); $porto_settings_optimize['optimize_revslider'] = false; } update_option( 'porto_settings_optimize', $porto_settings_optimize ); wp_redirect( esc_url_raw( $this->get_next_step_link() ) ); exit; } /** * Other Minify Step */ public function porto_speed_optimize_wizard_general() { global $porto_settings_optimize, $porto_settings; $disable_woo_blocks = get_option( 'porto_disable_woo_blocks', false ); ?> <h2><?php esc_html_e( 'Other Minify', 'porto' ); ?></h2> <p class="lead"><?php esc_html_e( 'This will help you to set up general optimization settings such as follows.', 'porto' ); ?></p> <form action="" method="post"> <ul> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="minify_css" <?php echo isset( $porto_settings_optimize['minify_css'] ) ? checked( $porto_settings_optimize['minify_css'], true, false ) : ''; ?>> <?php esc_html_e( 'Minify CSS/JS', 'porto' ); ?> </label> <p><?php esc_html_e( 'This will minify all css files which Porto theme generates such as skin, dynamic_style, shortcodes, etc. Also if you check this option, it uses minified javascript files.', 'porto' ); ?></p> </li> <li> <label class="checkbox checkbox-inline"> <?php /* translators: $1: opening A tag which has link to the Google Webfont loader docs $2: closing A tag */ ?> <input type="checkbox" value="true" name="google_webfont" <?php echo isset( $porto_settings['google-webfont-loader'] ) ? checked( $porto_settings['google-webfont-loader'], true, false ) : ''; ?>> <?php printf( esc_html__( 'Enable %1$sWeb Font Loader%2$s for Google Fonts', 'porto' ), '<a href="https://developers.google.com/fonts/docs/webfont_loader" target="_blank" rel="noopener noreferrer">', '</a>' ); ?> </label> <?php /* translators: $1: opening A tag which has link to the Google PageSpeed Insights $2: closing A tag */ ?> <p><?php printf( esc_html__( 'By using this option, you can increase page speed about 4 percent in %1$sGoogle PageSpeed Insights%2$s for both of mobile and desktop.', 'porto' ), '<a href="https://developers.google.com/speed/pagespeed/insights/" target="_blank" rel="noopener noreferrer">', '</a>' ); ?></p> </li> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="optimize_bootstrap" <?php echo isset( $porto_settings_optimize['optimize_bootstrap'] ) ? checked( $porto_settings_optimize['optimize_bootstrap'], true, false ) : ''; ?>> <?php esc_html_e( 'Optimize Bootstrap', 'porto' ); ?> </label> <p><?php esc_html_e( 'By using this option, you can use bootstrap features only what Porto theme used. This will reduce around 150KB of page size.', 'porto' ); ?></p> </li> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="optimize_fontawesome" <?php echo isset( $porto_settings_optimize['optimize_fontawesome'] ) ? checked( $porto_settings_optimize['optimize_fontawesome'], true, false ) : ''; ?>> <?php esc_html_e( 'Optimze FontAwesome', 'porto' ); ?> </label> <p><?php esc_html_e( 'By using this option, you can use fontawesome icons only what Porto theme used. This will reduce around 40KB of page size.', 'porto' ); ?></p> </li> <?php if ( defined( 'ELEMENTOR_VERSION' ) ) : ?> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="dequeue_elementor_rc" <?php echo isset( $porto_settings_optimize['dequeue_elementor_rc'] ) ? checked( $porto_settings_optimize['dequeue_elementor_rc'], true, false ) : ''; ?>> <?php esc_html_e( 'Dequeue Elementor FontAwesome', 'porto' ); ?> </label> <p><?php esc_html_e( 'This will dequeue elementor fontawesome resources.', 'porto' ); ?></p> </li> <?php endif; ?> <?php if ( defined( 'DOKAN_PLUGIN_VERSION' ) ) : ?> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="dequeue_dokan_rc" <?php echo isset( $porto_settings_optimize['dequeue_dokan_rc'] ) ? checked( $porto_settings_optimize['dequeue_dokan_rc'], true, false ) : ''; ?>> <?php esc_html_e( 'Dequeue Dokan FontAwesome', 'porto' ); ?> </label> <p><?php esc_html_e( 'This will dequeue dokan fontawesome resources.', 'porto' ); ?></p> </li> <?php endif; ?> <?php if ( defined( 'WOOCOMMERCE_VERSION' ) ) : ?> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="disable_woo_blocks" <?php checked( $disable_woo_blocks, true ); ?>> <?php esc_html_e( 'Disable WooCommerce Gutenberg Blocks & YITH Blocks', 'porto' ); ?> </label> <p><?php esc_html_e( 'If you haven\'t used WooCommerce Gutenberg Blocks in your site, Please check this option. It increases your site speed.', 'porto' ); ?></p> </li> <?php endif; ?> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="optimize_gutenberg" <?php echo isset( $porto_settings_optimize['optimize_gutenberg'] ) ? checked( $porto_settings_optimize['optimize_gutenberg'], true, false ) : ''; ?>> <?php esc_html_e( 'Dequeue Gutenberg block syle', 'porto' ); ?> </label> <p><?php esc_html_e( 'By using this option, Gutenberg block styles will not be enqueued if they were not used in the site. This will reduce around 150KB ~ 200KB of page size.', 'porto' ); ?></p> </li> <?php if ( class_exists( 'Ivole' ) ) : ?> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="optimize_curs" <?php echo isset( $porto_settings_optimize['optimize_curs'] ) ? checked( $porto_settings_optimize['optimize_curs'], true, false ) : ''; ?>> <?php esc_html_e( 'Load only Customer Reviews Summary Resources on Single Product Page', 'porto' ); ?> </label> <p><?php esc_html_e( 'By using this option, Customer Reviews Sumary styles will not be enqueued if they were not used in the site.', 'porto' ); ?></p> </li> <?php endif; ?> <?php if ( defined( 'WOOCOMMERCE_VERSION' ) && defined( 'YITH_WCAN' ) ) : ?> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="optimize_yith_wcan" <?php echo isset( $porto_settings_optimize['optimize_yith_wcan'] ) ? checked( $porto_settings_optimize['optimize_yith_wcan'], true, false ) : ''; ?>> <?php esc_html_e( 'Load only YITH WooCommerce Ajax Product Filter Resources on Shop page and Single Product Page', 'porto' ); ?> </label> <p><?php esc_html_e( 'By using this option, YITH WooCommerce Ajax Product Filter styles will not be enqueued if they were not used in the site.', 'porto' ); ?></p> </li> <?php endif; ?> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="optimize_emojis" <?php echo isset( $porto_settings_optimize['optimize_emojis'] ) ? checked( $porto_settings_optimize['optimize_emojis'], true, false ) : ''; ?>> <?php esc_html_e( 'Dequeue Emojis Script', 'porto' ); ?> </label> <p><?php esc_html_e( 'By using this option, you can remove WordPress\' emojis script.', 'porto' ); ?></p> </li> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="optimize_migrate" <?php echo isset( $porto_settings_optimize['optimize_migrate'] ) ? checked( $porto_settings_optimize['optimize_migrate'], true, false ) : ''; ?>> <?php esc_html_e( 'Disable jQuery Migrate Script', 'porto' ); ?> </label> <p><?php esc_html_e( 'By using this option, you can disable jQuery migrate script. Please use this option if you are not using any deprecated jQuery code.', 'porto' ); ?></p> </li> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="optimize_jquery_footer" <?php echo isset( $porto_settings_optimize['optimize_jquery_footer'] ) ? checked( $porto_settings_optimize['optimize_jquery_footer'], true, false ) : ''; ?>> <?php esc_html_e( 'Load jQuery in Footer', 'porto' ); ?> </label> <p><?php esc_html_e( 'Defer loading of jQuery to the footer of the page.', 'porto' ); ?></p> </li> <li> <h4><?php esc_html_e( 'Disable Unused Content Types', 'porto' ); ?></h4> <?php $post_types = array( 'portfolio' => __( 'Portfolio', 'porto' ), 'member' => __( 'Member', 'porto' ), 'event' => __( 'Event', 'porto' ), 'faq' => __( 'Faq', 'porto' ), ); foreach ( $post_types as $post_type => $title ) { ?> <label class="checkbox checkbox-inline"> <input type="checkbox" value="<?php echo esc_attr( $post_type ); ?>" name="optimize_post_types[]" <?php echo isset( $porto_settings[ 'enable-' . $post_type ] ) ? checked( ! $porto_settings[ 'enable-' . $post_type ], true, false ) : ''; ?>> <?php echo esc_html( $title ); ?> </label> <?php } ?> <p class="mt-2"><?php esc_html_e( 'By disabling unused content types, you can reduce server response time and free up server space by deleting thumbnail files for these content types. We recommend to use Regenerate Thumbnails to remove image files for unregistered sizes after modifying these options.', 'porto' ); ?></p> </li> <li> <h4><?php esc_html_e( 'Disable Unused Templates Builders', 'porto' ); ?></h4> <?php $builder_types = array( 'block' => __( 'Block', 'porto' ), 'header' => __( 'Header', 'porto' ), 'footer' => __( 'Footer', 'porto' ), 'product' => __( 'Single Product', 'porto' ), 'shop' => __( 'Product Archive', 'porto' ), 'archive' => __( 'Archive', 'porto' ), 'single' => __( 'Single', 'porto' ), 'type' => __( 'Post Type', 'porto' ), ); foreach ( $builder_types as $builder_type => $title ) { ?> <label class="checkbox checkbox-inline"> <input type="checkbox" value="<?php echo esc_attr( $builder_type ); ?>" name="disabled_pbs[]" <?php echo isset( $porto_settings_optimize['disabled_pbs'] ) && is_array( $porto_settings_optimize['disabled_pbs'] ) ? checked( in_array( $builder_type, $porto_settings_optimize['disabled_pbs'] ), true, false ) : ''; ?>> <?php echo esc_html( $title ); ?> </label> <?php } ?> </li> </ul> <p class="porto-setup-actions step"> <a href="<?php echo esc_url( $this->get_next_step_link() ); ?>" class="btn btn-dark button-next"><?php esc_html_e( 'Skip this step', 'porto' ); ?></a> <button type="submit" name="save_step" class="btn btn-primary button-next" value="<?php esc_attr_e( 'Compile & Continue', 'porto' ); ?>"><?php esc_html_e( 'Compile & Continue', 'porto' ); ?><i class="fas fa-chevron-right ms-2"></i></button> <?php wp_nonce_field( 'porto-speed-optimize' ); ?> </p> </form> <?php } public function porto_speed_optimize_wizard_general_save() { check_admin_referer( 'porto-speed-optimize' ); if ( ! class_exists( 'ReduxFrameworkInstances' ) ) { // include redux framework core functions require_once( PORTO_ADMIN . '/ReduxCore/framework.php' ); if ( ! class_exists( 'Redux_Framework_porto_settings' ) ) { require_once( PORTO_ADMIN . '/theme_options/settings.php' ); require_once( PORTO_ADMIN . '/theme_options/save_settings.php' ); } else { global $reduxPortoSettings; $reduxPortoSettings->initSettings(); } } elseif ( defined( 'REDUX_PLUGIN_FILE' ) ) { // If activated redux-plugin if ( ! class_exists( 'Redux_Framework_porto_settings' ) ) { require_once( PORTO_ADMIN . '/theme_options/settings.php' ); require_once( PORTO_ADMIN . '/theme_options/save_settings.php' ); } else { global $reduxPortoSettings; $reduxPortoSettings->initSettings(); } } global $porto_settings_optimize, $porto_settings; $need_compile = false; if ( isset( $_POST['minify_css'] ) && 'true' == $_POST['minify_css'] ) { if ( ! isset( $porto_settings_optimize['minify_css'] ) || ! $porto_settings_optimize['minify_css'] ) { $need_compile = true; } $porto_settings_optimize['minify_css'] = true; } else { if ( isset( $porto_settings_optimize['minify_css'] ) && $porto_settings_optimize['minify_css'] ) { $need_compile = true; } $porto_settings_optimize['minify_css'] = false; } if ( $need_compile && isset( $porto_settings_optimize['shortcodes_to_remove'] ) ) { porto_compile_css( 'shortcodes' ); } $need_compile = false; if ( isset( $_POST['optimize_bootstrap'] ) && 'true' == $_POST['optimize_bootstrap'] ) { if ( ! isset( $porto_settings_optimize['optimize_bootstrap'] ) || ! $porto_settings_optimize['optimize_bootstrap'] ) { $need_compile = true; } $porto_settings_optimize['optimize_bootstrap'] = true; } else { if ( isset( $porto_settings_optimize['optimize_bootstrap'] ) && $porto_settings_optimize['optimize_bootstrap'] ) { $need_compile = true; } $porto_settings_optimize['optimize_bootstrap'] = false; } if ( $need_compile ) { porto_compile_css( 'bootstrap_rtl' ); porto_compile_css( 'bootstrap' ); } $need_save = false; if ( isset( $_POST['google_webfont'] ) && 'true' == $_POST['google_webfont'] ) { if ( ! isset( $porto_settings['google-webfont-loader'] ) || ! $porto_settings['google-webfont-loader'] ) { $porto_settings['google-webfont-loader'] = true; $need_save = true; } } else { if ( isset( $porto_settings['google-webfont-loader'] ) && $porto_settings['google-webfont-loader'] ) { $porto_settings['google-webfont-loader'] = false; $need_save = true; } } $need_rewrite_rules = false; $disabled_content_types = isset( $_POST['optimize_post_types'] ) && is_array( $_POST['optimize_post_types'] ) ? $_POST['optimize_post_types'] : array(); $post_types = array( 'portfolio', 'member', 'event', 'faq' ); foreach ( $post_types as $post_type ) { if ( in_array( $post_type, $disabled_content_types ) && ( ! isset( $porto_settings[ 'enable-' . $post_type ] ) || $porto_settings[ 'enable-' . $post_type ] ) ) { $porto_settings[ 'enable-' . $post_type ] = false; $need_save = true; $need_rewrite_rules = true; } elseif ( ! in_array( $post_type, $disabled_content_types ) && isset( $porto_settings[ 'enable-' . $post_type ] ) && ! $porto_settings[ 'enable-' . $post_type ] ) { $porto_settings[ 'enable-' . $post_type ] = true; $need_save = true; $need_rewrite_rules = true; } } $disabled_pbs = isset( $_POST['disabled_pbs'] ) && is_array( $_POST['disabled_pbs'] ) ? $_POST['disabled_pbs'] : array(); if ( ! isset( $porto_settings_optimize['disabled_pbs'] ) ) { $porto_settings_optimize['disabled_pbs'] = array(); } if ( ! empty( array_diff( $disabled_pbs, $porto_settings_optimize['disabled_pbs'] ) ) || ! empty( array_diff( $porto_settings_optimize['disabled_pbs'], $disabled_pbs ) ) ) { $porto_settings_optimize['disabled_pbs'] = $disabled_pbs; $need_rewrite_rules = true; } if ( $need_rewrite_rules ) { set_transient( 'porto_flush_rewrite_rules', true, 60 ); } if ( $need_save ) { ob_start(); $redux = ReduxFrameworkInstances::get_instance( 'porto_settings' ); if ( isset( $porto_settings['conditions'] ) ) { $_conditions = $porto_settings['conditions']; unset( $porto_settings['conditions'] ); } if ( isset( $porto_settings['rendered_builders'] ) ) { $_rendered_builders = $porto_settings['rendered_builders']; unset( $porto_settings['rendered_builders'] ); } $redux->set_options( $porto_settings ); if ( isset( $_conditions ) ) { $porto_settings['conditions'] = $_conditions; } if ( isset( $_rendered_builders ) ) { $porto_settings['rendered_builders'] = $_rendered_builders; } ob_end_clean(); } if ( isset( $_POST['optimize_fontawesome'] ) && 'true' == $_POST['optimize_fontawesome'] ) { $porto_settings_optimize['optimize_fontawesome'] = true; } else { $porto_settings_optimize['optimize_fontawesome'] = false; } if ( ! empty( $_POST['dequeue_elementor_rc'] ) ) { $porto_settings_optimize['dequeue_elementor_rc'] = true; } else { $porto_settings_optimize['dequeue_elementor_rc'] = false; } if ( ! empty( $_POST['dequeue_dokan_rc'] ) ) { $porto_settings_optimize['dequeue_dokan_rc'] = true; } else { $porto_settings_optimize['dequeue_dokan_rc'] = false; } if ( ! empty( $_POST['disable_woo_blocks'] ) ) { update_option( 'porto_disable_woo_blocks', true ); } else { update_option( 'porto_disable_woo_blocks', false ); } // check Gutenberg block is used $porto_settings_optimize['dequeue_wc_block_css'] = false; $porto_settings_optimize['dequeue_wp_block_css'] = false; if ( isset( $_POST['optimize_gutenberg'] ) && 'true' == $_POST['optimize_gutenberg'] ) { $porto_settings_optimize['optimize_gutenberg'] = true; $porto_settings_optimize['dequeue_wp_block_css'] = true; if ( ! $this->check_wc_block() ) { $porto_settings_optimize['dequeue_wc_block_css'] = true; } } else { $porto_settings_optimize['optimize_gutenberg'] = false; } if ( isset( $_POST['optimize_curs'] ) && 'true' == $_POST['optimize_curs'] ) { $porto_settings_optimize['optimize_curs'] = true; } else { $porto_settings_optimize['optimize_curs'] = false; } if ( isset( $_POST['optimize_yith_wcan'] ) && 'true' == $_POST['optimize_yith_wcan'] ) { $porto_settings_optimize['optimize_yith_wcan'] = true; } else { $porto_settings_optimize['optimize_yith_wcan'] = false; } // check emojis and jQuery migrate if ( isset( $_POST['optimize_emojis'] ) && 'true' == $_POST['optimize_emojis'] ) { $porto_settings_optimize['optimize_emojis'] = true; } else { $porto_settings_optimize['optimize_emojis'] = false; } if ( isset( $_POST['optimize_migrate'] ) && 'true' == $_POST['optimize_migrate'] ) { $porto_settings_optimize['optimize_migrate'] = true; } else { $porto_settings_optimize['optimize_migrate'] = false; } if ( isset( $_POST['optimize_jquery_footer'] ) && 'true' == $_POST['optimize_jquery_footer'] ) { $porto_settings_optimize['optimize_jquery_footer'] = true; } else { $porto_settings_optimize['optimize_jquery_footer'] = false; } update_option( 'porto_settings_optimize', $porto_settings_optimize ); wp_redirect( esc_url_raw( $this->get_next_step_link() ) ); exit; } /** * Render the advanced wizard. * * @since 6.3.0 */ public function porto_speed_optimize_wizard_advanced() { global $porto_settings_optimize; ?> <h2><?php esc_html_e( 'Advanced Optimize', 'porto' ); ?></h2> <p class="lead"><?php esc_html_e( 'Porto will help you to increase the speed of your site.', 'porto' ); ?></p> <form action="" method="post"> <ul> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="rocket_compatibility" <?php echo isset( $porto_settings_optimize['rocket_compatibility'] ) ? checked( $porto_settings_optimize['rocket_compatibility'], true, false ) : ''; ?>/> <?php esc_html_e( 'WP Rocket delay JS exclusions', 'porto' ); ?> </label> <p><?php esc_html_e( 'Add a list of JS files that donβt need to be delayed to the exclusion list for WP Rocket.', 'porto' ); ?></p> </li> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="mobile_disable_animation" <?php echo isset( $porto_settings_optimize['mobile_disable_animation'] ) ? checked( $porto_settings_optimize['mobile_disable_animation'], true, false ) : ''; ?>/> <?php esc_html_e( 'Disable Mobile Animations', 'porto' ); ?> </label> <p><?php esc_html_e( 'Disable appear and slide animations in mobile.', 'porto' ); ?></p> </li> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="mobile_disable_slider" <?php echo isset( $porto_settings_optimize['mobile_disable_slider'] ) ? checked( $porto_settings_optimize['mobile_disable_slider'], true, false ) : ''; ?>/> <?php esc_html_e( 'Disable Mobile Sliders', 'porto' ); ?> </label> <p><?php esc_html_e( 'Disable slider feature for elements in mobile.', 'porto' ); ?></p> </li> <?php if ( ! empty( $porto_settings_optimize['merge_stylesheets'] ) ) : ?> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="merge_stylesheets" <?php echo isset( $porto_settings_optimize['merge_stylesheets'] ) ? checked( $porto_settings_optimize['merge_stylesheets'], true, false ) : ''; ?>/> <?php esc_html_e( 'Merge javascripts and stylesheets (Deprecated, Instead use WP Rocket)', 'porto' ); ?> <?php if ( !empty( $porto_settings_optimize['merge_stylesheets'] ) ) : ?> <a title="<?php esc_attr_e( 'Recompile Merged js/css','porto' ); ?>" target="_blank" href="<?php echo esc_url( admin_url( 'admin.php?page=porto-tools&action=compile_css&_wpnonce=' . wp_create_nonce( 'porto-tools' ) ) ); ?>" class="recompile active"><i class="fas fa-undo"></i></a> <?php endif; ?> </label> <p><?php esc_html_e( 'Compile the dynamic CSS to files (a separate file will be created for each page inside of the uploads folder)', 'porto' ); ?></p> </li> <?php endif; ?> <?php if ( ! empty( $porto_settings_optimize['critical_css'] ) ) : ?> <li> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="critical_css" <?php echo isset( $porto_settings_optimize['critical_css'] ) ? checked( $porto_settings_optimize['critical_css'], true, false ) : ''; ?>/> <?php esc_html_e( 'Enable Critical CSS (Deprecated, Instead use WP Rocket)', 'porto' ); ?> </label> <p><?php echo sprintf( esc_html__( 'Please use with above feature: %1$smerge css & js%2$s!!! If you check this option, you can see it in the admin menu. It helps your site to reduce the rendering time and increase the google page speed.', 'porto' ), '<b>', '</b>' ); ?></p> </li> <?php endif; ?> </ul> <p class="porto-setup-actions step"> <a href="<?php echo esc_url( $this->get_next_step_link() ); ?>" class="btn btn-dark button-next"><?php esc_html_e( 'Skip this step', 'porto' ); ?></a> <button type="submit" name="save_step" class="btn btn-primary button-next" value="<?php esc_attr_e( 'Save & Continue', 'porto' ); ?>"><?php esc_html_e( 'Save & Continue', 'porto' ); ?><i class="fas fa-chevron-right ms-2"></i></button> <?php wp_nonce_field( 'porto-speed-optimize' ); ?> </p> </form> <?php } /** * Save advanced tab in optimize wizard. * * @since 6.3.0 */ public function porto_speed_optimize_wizard_advanced_save() { check_admin_referer( 'porto-speed-optimize' ); global $porto_settings_optimize; if ( ! empty( $_POST['mobile_disable_slider'] ) ) { $porto_settings_optimize['mobile_disable_slider'] = true; } else { $porto_settings_optimize['mobile_disable_slider'] = false; } if ( ! empty( $_POST['mobile_disable_animation'] ) ) { $porto_settings_optimize['mobile_disable_animation'] = true; } else { $porto_settings_optimize['mobile_disable_animation'] = false; } if ( ! empty( $_POST['rocket_compatibility'] ) ) { $porto_settings_optimize['rocket_compatibility'] = true; } else { $porto_settings_optimize['rocket_compatibility'] = false; } if ( ! empty( $_POST['merge_stylesheets'] ) ) { $porto_settings_optimize['merge_stylesheets'] = true; } else { $porto_settings_optimize['merge_stylesheets'] = false; } if ( ! empty( $_POST['critical_css'] ) ) { $porto_settings_optimize['critical_css'] = true; } else { $porto_settings_optimize['critical_css'] = false; } update_option( 'porto_settings_optimize', $porto_settings_optimize ); wp_redirect( esc_url_raw( $this->get_next_step_link() ) ); exit; } /** * Lazy Load Images Step */ public function porto_speed_optimize_wizard_performance() { global $porto_settings_optimize; ?> <h2><?php esc_html_e( 'Performance', 'porto' ); ?></h2> <p class="lead"><?php esc_html_e( 'Controls several performance options.', 'porto' ); ?></p> <form action="" method="post"> <label><?php esc_html_e( 'WordPress JPG Quality', 'porto' ); ?></label> <input type="number" name="jpg_quality" placeholder="82" value="<?php echo isset( $porto_settings_optimize['jpg_quality'] ) ? esc_attr( $porto_settings_optimize['jpg_quality'] ) : ''; ?>" min="1" max="100"> <p> <?php esc_html_e( 'This option controls the quality of the generated images by WordPress. Please use Regenerate Thumbnails to regenerate image files after changing this value.', 'porto' ); ?> </p> <label><?php esc_html_e( 'WordPress Max Image Size (width or height)', 'porto' ); ?></label> <input type="number" name="max_image_size" placeholder="2560" value="<?php echo isset( $porto_settings_optimize['max_image_size'] ) ? esc_attr( $porto_settings_optimize['max_image_size'] ) : ''; ?>" min="0" max="30000"> <p> <?php esc_html_e( 'This option sets the threshold for image width or height. Please use "0" value to disable the threshold.', 'porto' ); ?> </p> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="lazyload" <?php echo isset( $porto_settings_optimize['lazyload'] ) ? checked( $porto_settings_optimize['lazyload'], true, false ) : ''; ?>> <?php esc_html_e( 'Lazy Load Images (For skipping particular images, please use below textarea for preload resources.)', 'porto' ); ?> </label> <p><em><i class="fas fa-info-circle"></i></em> <?php esc_html_e( 'Use with caution! Disable this option if you have any compability problems.', 'porto' ); ?></p> <label><?php esc_html_e( 'Lazy Load Sub Menus', 'porto' ); ?></label> <p style="margin-bottom: .5rem"> <label class="radio radio-inline me-2"> <input type="radio" name="lazyload_menu" value="" <?php echo checked( ! isset( $porto_settings_optimize['lazyload_menu'] ) || ! $porto_settings_optimize['lazyload_menu'], true, false ); ?>><?php esc_html_e( 'Disable', 'porto' ); ?> </label> <label class="radio radio-inline me-2"> <input type="radio" name="lazyload_menu" value="pageload" <?php echo checked( isset( $porto_settings_optimize['lazyload_menu'] ) && 'pageload' == $porto_settings_optimize['lazyload_menu'], true, false ); ?>><?php esc_html_e( 'After Page Loading', 'porto' ); ?> </label> <label class="radio radio-inline"> <input type="radio" name="lazyload_menu" value="firsthover" <?php echo checked( isset( $porto_settings_optimize['lazyload_menu'] ) && 'firsthover' == $porto_settings_optimize['lazyload_menu'], true, false ); ?>><?php esc_html_e( 'On First Hover', 'porto' ); ?> </label> </p> <label><?php esc_html_e( 'Preload Icon Fonts and Images', 'porto' ); ?></label> <p style="margin-bottom: .5rem"> <?php /* translators: Google Page Speed url */ ?> <?php printf( esc_html__( 'This improves page load time as the browser caches preloaded resources so they are available immediately when needed. By using this option, you can increase page speed about 1 ~ 4 percent in %1$sGoogle PageSpeed Insights%2$s for both of mobile and desktop.', 'porto' ), '<a href="https://developers.google.com/speed/pagespeed/insights/" target="_blank" rel="noopener noreferrer">', '</a>' ); ?> </p> <p> <label class="checkbox checkbox-inline"> <input type="checkbox" value="porto" name="preload_fonts[]" <?php echo isset( $porto_settings_optimize['preload'] ) ? checked( in_array( 'porto', $porto_settings_optimize['preload'] ), true, false ) : ''; ?>> Porto </label> <label class="checkbox checkbox-inline"> <input type="checkbox" value="fas" name="preload_fonts[]" <?php echo isset( $porto_settings_optimize['preload'] ) ? checked( in_array( 'fas', $porto_settings_optimize['preload'] ), true, false ) : ''; ?>> <?php esc_html_e( 'Font Awesome 6 Solid', 'porto' ); ?> </label> <label class="checkbox checkbox-inline"> <input type="checkbox" value="far" name="preload_fonts[]" <?php echo isset( $porto_settings_optimize['preload'] ) ? checked( in_array( 'far', $porto_settings_optimize['preload'] ), true, false ) : ''; ?>> <?php esc_html_e( 'Font Awesome 6 Regular', 'porto' ); ?> </label> <label class="checkbox checkbox-inline"> <input type="checkbox" value="fab" name="preload_fonts[]" <?php echo isset( $porto_settings_optimize['preload'] ) ? checked( in_array( 'fab', $porto_settings_optimize['preload'] ), true, false ) : ''; ?>> <?php esc_html_e( 'Font Awesome 6 Brands', 'porto' ); ?> </label> <label class="checkbox checkbox-inline"> <input type="checkbox" value="sli" name="preload_fonts[]" <?php echo isset( $porto_settings_optimize['preload'] ) ? checked( in_array( 'sli', $porto_settings_optimize['preload'] ), true, false ) : ''; ?>> <?php esc_html_e( 'Simple Line Icons', 'porto' ); ?> </label> <br> <br> <label><?php esc_html_e( 'Please input other resources that will be pre loaded.', 'porto' ); ?> <br/> <?php esc_html_e( 'Example:', 'porto' ); ?> <br/> https://www.portotheme.com/wordpress/porto/wp-content/uploads/2022/08/Logo.png <br/> https://www.portotheme.com/wordpress/porto/wp-content/themes/porto-child/fonts/custom.woff2 <br/> <br/> - <?php esc_html_e( 'How to preload only on HomePage', 'porto' ); ?> <br/> https://www.portotheme.com/wordpress/porto/wp-content/uploads/2024/09/into-banner.png -oh </label> <textarea class="form-control input-text" name="preload_fonts_custom" style="width: 100%; margin-top: .5rem" rows="4" value="<?php echo isset( $porto_settings_optimize['preload_custom'] ) ? esc_attr( $porto_settings_optimize['preload_custom'] ) : ''; ?>"><?php echo isset( $porto_settings_optimize['preload_custom'] ) ? esc_html( $porto_settings_optimize['preload_custom'] ) : ''; ?></textarea> </p> <label><?php esc_html_e( 'Font Face Rendering', 'porto' ); ?></label> <p style="margin-bottom: .5rem"> <?php /* translators: Google Page Speed url */ ?> <?php printf( esc_html__( 'Choosing "Swap" for font-display will ensure text remains visible during webfont load and this will improve page speed score in %1$sGoogle PageSpeed Insights%2$s for both of mobile and desktop.', 'porto' ), '<a href="https://developers.google.com/speed/pagespeed/insights/" target="_blank">', '</a>' ); ?> </p> <label class="checkbox checkbox-inline"> <input type="checkbox" value="true" name="swap" <?php echo isset( $porto_settings_optimize['swap'] ) ? checked( $porto_settings_optimize['swap'], true, false ) : ''; ?>> <?php esc_html_e( 'Swap for Font Display', 'porto' ); ?> </label> <p class="porto-setup-actions step"> <a href="<?php echo esc_url( $this->get_next_step_link() ); ?>" class="btn btn-dark button-next"><?php esc_html_e( 'Skip this step', 'porto' ); ?></a> <button type="submit" name="save_step" class="btn btn-primary button-next" value="<?php esc_attr_e( 'Save & Continue', 'porto' ); ?>"><?php esc_html_e( 'Save & Continue', 'porto' ); ?><i class="fas fa-chevron-right ms-2"></i></button> <?php wp_nonce_field( 'porto-speed-optimize' ); ?> </p> </form> <?php } public function porto_speed_optimize_wizard_performance_save() { check_admin_referer( 'porto-speed-optimize' ); global $porto_settings_optimize; if ( isset( $_POST['jpg_quality'] ) ) { $porto_settings_optimize['jpg_quality'] = sanitize_text_field( $_POST['jpg_quality'] ); } if ( isset( $_POST['max_image_size'] ) ) { $porto_settings_optimize['max_image_size'] = sanitize_text_field( $_POST['max_image_size'] ); } if ( isset( $_POST['lazyload'] ) && 'true' == $_POST['lazyload'] ) { $porto_settings_optimize['lazyload'] = true; } else { $porto_settings_optimize['lazyload'] = false; } if ( isset( $_POST['swap'] ) && 'true' == $_POST['swap'] ) { $porto_settings_optimize['swap'] = true; } else { $porto_settings_optimize['swap'] = false; } $need_compile = false; if ( ! isset( $porto_settings_optimize['lazyload_menu'] ) || ( isset( $_POST['lazyload_menu'] ) && $porto_settings_optimize['lazyload_menu'] != sanitize_title( $_POST['lazyload_menu'] ) ) ) { $need_compile = true; } if ( isset( $_POST['lazyload_menu'] ) ) { $porto_settings_optimize['lazyload_menu'] = sanitize_title( $_POST['lazyload_menu'] ); } if ( isset( $_POST['preload_fonts'] ) ) { $porto_settings_optimize['preload'] = array_map( 'sanitize_text_field', $_POST['preload_fonts'] ); } else { unset( $porto_settings_optimize['preload'] ); } if ( isset( $_POST['preload_fonts_custom'] ) ) { $porto_settings_optimize['preload_custom'] = sanitize_textarea_field( $_POST['preload_fonts_custom'] ); } update_option( 'porto_settings_optimize', $porto_settings_optimize ); if ( $need_compile ) { do_action( 'porto_admin_save_theme_settings' ); } wp_redirect( esc_url_raw( $this->get_next_step_link() ) ); exit; } /** * Final step */ public function porto_speed_optimize_wizard_ready() { update_option( 'porto_speed_optimize_complete', time() ); ?> <h2><?php esc_html_e( 'Your Website is now optimized much better than before!', 'porto' ); ?></h2> <form method="post"> <?php $plugins = $this->_get_plugins(); if ( count( $plugins['all'] ) ) { ?> <p style="color: #c00;"><?php esc_html_e( 'Note: You should disable below plugins while development. They may affect your changes not applied.', 'porto' ); ?></p> <ul class="porto-setup-wizard-plugins"> <?php foreach ( $plugins['all'] as $slug => $plugin ) { ?> <li data-slug="<?php echo esc_attr( $slug ); ?>"> <label class="checkbox checkbox-inline"> <input type="checkbox" name="setup-plugin"> <?php $key = ''; if ( isset( $plugins['install'][ $slug ] ) ) { $key = esc_html__( 'Install', 'porto' ); } elseif ( isset( $plugins['update'][ $slug ] ) ) { $key = esc_html__( 'Update', 'porto' ); } elseif ( isset( $plugins['activate'][ $slug ] ) ) { $key = esc_html__( 'Activate', 'porto' ); } ?> <?php /* translators: %s: Plugin url and name */ ?> <?php printf( __( $key . ' <a href="%s" target="_blank" rel="noopener noreferrer">%s</a>', 'porto' ), 'https://wordpress.org/plugins/' . esc_attr( $slug ) . '/', $plugin['name'] ); ?> <span></span> </label> <div class="spinner"></div> <?php if ( $plugin['desc'] ) : ?> <p><?php echo esc_html( $plugin['desc'] ); ?></p> <?php endif; ?> </li> <?php } ?> </ul> <?php } ?> <ul> <li style="margin-top: 30px; margin-bottom: 30px;"> <img src="<?php echo PORTO_PLUGINS_URI . '/images/wp-rocket.svg'; ?>" alt="WP Rocket Plugin" width="64" height="64" style="float: left;"> <h4>WP Rocket</h4> WordPress experts recommend WP Rocket as the best WordPress caching plugin to achieve incredible<br/> speed result and optimize your website for the Core Web Vitals <a href="https://wp-rocket.me/features/" rel="noopener noreferrer" target="_blank">How To Use</a>. </li> <li class="howto"> <a href="https://gtmetrix.com/leverage-browser-caching.html" target="_blank" rel="noopener noreferrer"><?php esc_html_e( 'How to enable leverage browser caching.', 'porto' ); ?></a> <p>Page load times can be significantly improved by asking visitors to save and reuse the files included in your website.</p> </li> </ul> <p class="porto-setup-actions step"> <?php if ( count( $plugins['all'] ) ) : ?> <a href="#" class="btn-primary btn button-next" data-callback="install_plugins"><?php esc_html_e( 'Install Plugins', 'porto' ); ?><i class="fas fa-chevron-right ms-2"></i></a> <?php endif; ?> <?php wp_nonce_field( 'porto-setup' ); ?> <a class="btn btn-borders" href="<?php echo esc_url( home_url() ); ?>"><?php esc_html_e( 'View your new website!', 'porto' ); ?></a> </p> </form> <?php } public function ajax_plugins() { if ( ! check_ajax_referer( 'porto_speed_optimize_wizard_nonce', 'wpnonce' ) || empty( $_POST['slug'] ) ) { wp_send_json_error( array( 'error' => 1, 'message' => esc_html__( 'No Slug Found', 'porto' ), ) ); } $json = array(); // send back some json we use to hit up TGM $plugins = $this->_get_plugins(); // what are we doing with this plugin? foreach ( $plugins['activate'] as $slug => $plugin ) { if ( $_POST['slug'] == $slug ) { $json = array( 'url' => esc_url( admin_url( $this->tgmpa_url ) ), 'plugin' => array( $slug ), 'tgmpa-page' => $this->tgmpa_menu_slug, 'plugin_status' => 'all', '_wpnonce' => wp_create_nonce( 'bulk-plugins' ), 'action' => 'tgmpa-bulk-activate', 'action2' => -1, 'message' => esc_html__( 'Activating Plugin', 'porto' ), ); break; } } foreach ( $plugins['update'] as $slug => $plugin ) { if ( $_POST['slug'] == $slug ) { $json = array( 'url' => esc_url( admin_url( $this->tgmpa_url ) ), 'plugin' => array( $slug ), 'tgmpa-page' => $this->tgmpa_menu_slug, 'plugin_status' => 'all', '_wpnonce' => wp_create_nonce( 'bulk-plugins' ), 'action' => 'tgmpa-bulk-update', 'action2' => -1, 'message' => esc_html__( 'Updating Plugin', 'porto' ), ); break; } } foreach ( $plugins['install'] as $slug => $plugin ) { if ( $_POST['slug'] == $slug ) { $json = array( 'url' => esc_url( admin_url( $this->tgmpa_url ) ), 'plugin' => array( $slug ), 'tgmpa-page' => $this->tgmpa_menu_slug, 'plugin_status' => 'all', '_wpnonce' => wp_create_nonce( 'bulk-plugins' ), 'action' => 'tgmpa-bulk-install', 'action2' => -1, 'message' => esc_html__( 'Installing Plugin', 'porto' ), ); break; } } if ( $json ) { $json['hash'] = md5( serialize( $json ) ); // used for checking if duplicates happen, move to next plugin wp_send_json( $json ); } else { wp_send_json( array( 'done' => 1, 'message' => esc_html__( 'Success', 'porto' ), ) ); } exit; } private function _get_plugins() { $instance = call_user_func( array( get_class( $GLOBALS['tgmpa'] ), 'get_instance' ) ); $plugin_func_name = 'is_plugin_active'; $plugins = array( 'all' => array(), // Meaning: all plugins which still have open actions. 'install' => array(), 'update' => array(), 'activate' => array(), ); foreach ( $instance->plugins as $slug => $plugin ) { if ( ! isset( $plugin['visibility'] ) || 'speed_wizard' != $plugin['visibility'] || $instance->$plugin_func_name( $slug ) && false === $instance->does_plugin_have_update( $slug ) ) { continue; } else { $plugins['all'][ $slug ] = $plugin; if ( ! $instance->is_plugin_installed( $slug ) ) { $plugins['install'][ $slug ] = $plugin; } else { if ( false !== $instance->does_plugin_have_update( $slug ) ) { $plugins['update'][ $slug ] = $plugin; } if ( $instance->can_plugin_activate( $slug ) ) { $plugins['activate'][ $slug ] = $plugin; } } } } return $plugins; } /** * Get unused shortcodes list */ public function get_unused_shortcodes() { $all_shortcodes = $this->get_all_shortcode_list(); $used_shortcodes = $this->get_used_shortcode_list(); $unused_shortcodes = array_diff( $all_shortcodes, $used_shortcodes ); echo json_encode( $unused_shortcodes ); die(); } /** * Get All Shortcodes List */ private function get_all_shortcode_list() { $shortcode_list = array(); if ( ! class_exists( 'WPBMap' ) ) { if ( class_exists( 'PortoShortcodesClass' ) ) { $shortcode_list = array_merge( PortoShortcodesClass::$shortcodes, PortoShortcodesClass::$woo_shortcodes ); if ( defined( 'ELEMENTOR_VERSION' ) ) { // Includes Elementor widgets $shortcode_list = array_merge( $shortcode_list, array( 'porto_circular_bar', ) ); } } } else { $all_vc_shortcodes = WPBMap::getAllShortCodes(); $all_vc_categories = WPBMap::getCategories(); if ( ! empty( $all_vc_shortcodes ) ) { foreach ( $all_vc_shortcodes as $key => $s ) { if ( 'vc_row' == $key || 'vc_row_inner' == $key || 'vc_column' == $key || 'vc_column_inner' == $key ) { continue; } $shortcode_list[] = $key; } } } return apply_filters( 'porto_all_shortcode_list', $shortcode_list ); } /** * Get shortcodes from porto header builder html elements */ private function header_builder_html_shortcode( $elements ) { if ( ! $elements || empty( $elements ) ) { return false; } $post_short_contents = array(); foreach ( $elements as $element ) { if ( is_array( $element ) ) { $result = $this->header_builder_html_shortcode( $element ); if ( ! empty( $result ) ) { $post_short_contents = array_merge( $post_short_contents, $result ); } } else { foreach ( $element as $key => $value ) { if ( 'html' == $key && $value ) { $str = ''; if ( is_string( $value ) ) { $str = $value; } elseif ( is_object( $value ) && isset( $value->html ) ) { $str = $value->html; } if ( $str ) { $post_short_contents[] = $str; } } } } } return $post_short_contents; } /** * Get Used Shortcodes List */ private function get_used_shortcode_list( $shortcode_list = array(), $return_ids = false, $attrs = array() ) { if ( empty( $shortcode_list ) ) { $shortcode_list = $this->get_all_shortcode_list(); } global $wpdb, $porto_settings; $post_contents = $wpdb->get_results( $wpdb->prepare( "SELECT ID, post_content, post_excerpt FROM $wpdb->posts WHERE post_type not in (%s, %s) AND post_status = 'publish' AND (post_content != '' or post_excerpt != '')", 'revision', 'attachment' ) ); $post_meta_contents = $wpdb->get_results( $wpdb->prepare( "SELECT post_id as ID, meta_value as post_content FROM $wpdb->postmeta WHERE meta_key in (%s, %s) and meta_value != ''", 'video_code', 'member_overview' ) ); $post_contents = array_merge( $post_contents, $post_meta_contents ); $sidebars_array = get_option( 'sidebars_widgets' ); if ( empty( $post_contents ) || ! is_array( $post_contents ) ) { $post_contents = array(); } foreach ( $sidebars_array as $sidebar => $widgets ) { if ( ! empty( $widgets ) && is_array( $widgets ) ) { foreach ( $widgets as $sidebar_widget ) { $widget_type = trim( substr( $sidebar_widget, 0, strrpos( $sidebar_widget, '-' ) ) ); if ( ! array_key_exists( $widget_type, $post_contents ) ) { $post_contents[ $widget_type ] = get_option( 'widget_' . $widget_type ); } } } } $porto_settings_keys = array( 'footer-tooltip', 'welcome-msg', 'header-contact-info', 'menu-title', 'menu-block', 'header-copyright', 'post-banner-block', 'portfolio-banner-block', 'member-banner-block', 'event-banner-block', ); $custom_tabs_count = isset( $porto_settings['product-custom-tabs-count'] ) ? (int) $porto_settings['product-custom-tabs-count'] : 2; for ( $index = 1; $index <= $custom_tabs_count; $index++ ) { $porto_settings_keys[] = 'custom_tab_content' . $index; } foreach ( $porto_settings_keys as $key ) { if ( isset( $porto_settings[ $key ] ) ) { $post_contents[] = $porto_settings[ $key ]; } } // header builder elements $current_layout = porto_header_builder_layout(); $header_elements = isset( $current_layout['elements'] ) ? $current_layout['elements'] : array(); foreach ( $header_elements as $elements ) { $elements = json_decode( $elements ); $result = $this->header_builder_html_shortcode( $elements ); if ( ! empty( $result ) ) { $post_contents = array_merge( $post_contents, $result ); } } $used = array(); if ( $return_ids ) { foreach ( $post_contents as $post_content ) { if ( isset( $post_content->ID ) ) { $content = $post_content->post_content; foreach ( $shortcode_list as $shortcode ) { if ( false === strpos( $content, '[' ) && false === strpos( $content, 'wp:porto/porto-' ) ) { continue; } if ( empty( $attrs ) && ! in_array( $post_content->ID, $used ) && ( false !== stripos( $content, '[' . $shortcode . ' ' ) || false !== stripos( $content, '[' . $shortcode . ']' ) || stripos( $content, 'wp:porto/' . str_replace( '_', '-', $shortcode ) ) !== false ) ) { $used[] = $post_content->ID; } elseif ( ! empty( $attrs ) && ! in_array( $post_content->ID, $used ) ) { $attr_text = ''; $attr_text1 = ''; foreach ( $attrs as $key => $value ) { $attr_text = $key . '="' . $value . '"'; if ( 'yes' == $value ) { $attr_text1 = '"' . $key . '":true'; } else { $attr_text1 = '"' . $key . '":"' . $value . '"'; } } if ( preg_match( '/\[' . $shortcode . '\s[^]]*' . $attr_text . '[^]]*\]/', $content ) || preg_match( '/wp:porto\/' . str_replace( '_', '-', $shortcode ) . '\s[^>]*' . $attr_text1 . '[^>]*\>/', $content ) ) { $used[] = $post_content->ID; } } } } } if ( defined( 'ELEMENTOR_VERSION' ) ) { $post_ids = array(); foreach ( $shortcode_list as $shortcode ) { $arr = $wpdb->get_results( 'SELECT m.post_id AS id, m.meta_value AS data FROM ' . esc_sql( $wpdb->postmeta ) . ' AS m INNER JOIN ' . esc_sql( $wpdb->posts ) . ' AS p ON m.post_id = p.ID WHERE p.post_status = "publish" AND p.post_type NOT IN ( "revision", "attachment" ) AND m.meta_key="_elementor_data" AND m.meta_value LIKE "%' . esc_sql( $wpdb->esc_like( '"widgetType":"' . $shortcode . '"' ) ) . '%"' ); if ( is_array( $arr ) ) { foreach ( $arr as $v ) { if ( ! array_key_exists( $v->id, $post_ids ) ) { $post_ids[ $v->id ] = $v->data; } } } } foreach ( $post_ids as $post_id => $data ) { $data = json_decode( $data, true ); if ( ! in_array( $post_id, $used ) && $this->elementor_check_widgets( $data, $shortcode_list, $attrs ) ) { $used[] = $post_id; } } } } else { $excerpt_arr = array( 'post_content', 'post_excerpt', ); foreach ( $post_contents as $post_content ) { foreach ( $excerpt_arr as $excerpt_key ) { if ( is_string( $post_content ) && 'post_excerpt' == $excerpt_key ) { break; } if ( ! is_string( $post_content ) && 'post_excerpt' == $excerpt_key && ! isset( $post_content->post_excerpt ) ) { break; } $content = is_string( $post_content ) ? $post_content : ( isset( $post_content->{$excerpt_key} ) ? $post_content->{$excerpt_key} : '' ); foreach ( $shortcode_list as $shortcode ) { if ( false === strpos( $content, '[' ) && false === strpos( $content, 'wp:porto/porto-' ) ) { continue; } if ( ! in_array( $shortcode, $used ) && ( false !== stripos( $content, '[' . $shortcode . ' ' ) || false !== stripos( $content, '[' . $shortcode . ']' ) || stripos( $content, 'wp:porto/' . str_replace( '_', '-', $shortcode ) ) !== false ) ) { $used[] = $shortcode; // check half container if ( 'porto_container' == $shortcode ) { $shortcode1 = 'porto_half_container'; $attr_text = 'is_half="true"'; $attr_text1 = '"is_half":true'; if ( preg_match( '/\[' . $shortcode1 . '\s[^]]*' . $attr_text . '[^]]*\]/', $content ) || preg_match( '/wp:porto\/' . str_replace( '_', '-', $shortcode1 ) . '\s[^>]*' . $attr_text1 . '[^>]*\>/', $content ) ) { $used[] = $shortcode1; } } } } $shortcode_list = array_diff( $shortcode_list, $used ); } } // check Elementor widgets if ( defined( 'ELEMENTOR_VERSION' ) ) { $widgets = array( 'porto_blog', 'porto_portfolios', 'porto_products', 'porto_ultimate_heading', 'porto_info_box', 'porto_recent_posts', 'porto_stat_counter', 'porto_one_page_category_products', 'porto_modal', 'porto_products_filter', 'porto_members', 'porto_recent_members', 'porto_price_box', 'porto_circular_bar', 'porto_fancytext', 'porto_countdown', 'porto_google_map', 'porto_hotspot', 'porto_steps', 'porto_image_gallery', 'porto_image_comparison', 'porto_scroll_progress', 'porto_360_degree_image_viewer', 'porto_contact_form', 'porto_cursor_effect', 'porto_content_switcher', 'porto_sticky_nav', ); $widgets = array_diff( $widgets, $used ); foreach ( $widgets as $widget ) { $post_ids = $wpdb->get_col( 'SELECT post_id FROM ' . $wpdb->postmeta . ' as meta left join ' . $wpdb->posts . ' as posts on meta.post_id = posts.ID WHERE posts.post_type not in ("revision", "attachment") AND posts.post_status = "publish" and meta_key = "_elementor_data" and meta_value LIKE \'%"widgetType":"' . $widget . '"%\' LIMIT 1' ); if ( ! empty( $post_ids ) ) { if ( 'porto_steps' == $widget ) { $used[] = 'porto_schedule_timeline_item'; } elseif ( 'porto_360_degree_image_viewer' == $widget ) { $used[] = 'porto_360degree_image_viewer'; } else { $used[] = $widget; } } } $params = array( array( 'porto_interactive_banner', array( 'as_param' => 'banner' ) ), array( 'porto_interactive_banner_layer', array( 'as_banner_layer' => 'yes' ) ), array( 'porto_grid_container', array( 'as_param' => 'creative' ) ), array( 'porto_grid_item', array( 'as_param' => 'grid_item' ) ), array( 'porto_interactive_banner', array( 'as_banner_layer' => 'banner' ) ), array( 'porto_interactive_banner_layer', array( 'as_banner_layer' => 'banner' ) ), ); foreach ( $params as $p ) { $key = $p[0]; $param_arr = $p[1]; if ( in_array( $key, $used ) ) { continue; } $search_str = ''; foreach ( $param_arr as $c => $n ) { if ( $search_str ) { $search_str .= ' AND'; } $search_str .= ' meta_value LIKE \'%"' . $c . '":"' . $n . '"%\''; } $post_ids = $wpdb->get_col( 'SELECT post_id FROM ' . $wpdb->postmeta . ' as meta left join ' . $wpdb->posts . ' as posts on meta.post_id = posts.ID WHERE posts.post_type not in ("revision", "attachment") AND posts.post_status = "publish" and meta_key = "_elementor_data" and' . $search_str . ' LIMIT 1' ); if ( ! empty( $post_ids ) ) { $used[] = $key; } } } } return apply_filters( 'porto_used_shortcode_list', $used, $return_ids ); } private function elementor_check_widgets( $data, $shortcode_list, $attrs ) { if ( empty( $attrs ) || empty( $data ) ) { return false; } foreach ( $data as $d ) { if ( ! empty( $d['elements'] ) ) { $result = $this->elementor_check_widgets( $d['elements'], $shortcode_list, $attrs ); if ( $result ) { return true; } } elseif ( isset( $d['widgetType'] ) && in_array( $d['widgetType'], $shortcode_list ) ) { $attr_exists = true; foreach ( $attrs as $key => $val ) { if ( ! isset( $d['settings'][ $key ] ) || $val !== $d['settings'][ $key ] ) { $attr_exists = false; break; } } if ( $attr_exists ) { return true; } } } return false; } private function check_wp_block() { global $wpdb; return $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type not in (%s, %s) AND post_status = 'publish' AND post_content LIKE '%<!-- wp:%' LIMIT 1", 'revision', 'attachment' ) ); } private function check_wc_block() { global $wpdb; return $wpdb->get_var( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE post_type not in (%s, %s) AND post_status = 'publish' AND post_content LIKE '%<!-- wp:woocommerce/%' LIMIT 1", 'revision', 'attachment' ) ); } } } add_action( 'after_setup_theme', 'porto_speed_optimize_wizard', 10 ); if ( ! function_exists( 'porto_speed_optimize_wizard' ) ) : function porto_speed_optimize_wizard() { Porto_Speed_Optimize_Wizard::get_instance(); } endif;
Save
Cancel