0
Validation results

Avada - Anzan Digital

Avada - Anzan Digital

WordPress 6.5.2 theme
0
This theme seems to be proprietary. Themecheck doesn't distribute commercial themes.
Critical alerts
  1. Customizer : Sanitization of Customizer settings Found a Customizer setting that did not have a sanitization callback function in file extension_customizer.php. Every call to the add_setting() method needs to have a sanitization callback function passed.
  2. Title : Title The <title> tags can only contain a call to wp_title(). Use the wp_title filter to modify the output.
  3. Security breaches : Use of PHP sytem calls Found ->exec in file CurlPost.php. 83: $response = $this->curl->exec($handle);
  4. Security breaches : Modification of PHP server settings Found ini_set in file class-avada-migrate.php. 32: @ini_set( 'memory_limit', '256M' );
  5. Security breaches : Use of base64_decode() Found base64_decode in file class-avada-patcher-client.php. 79: $args['reference'] = base64_decode( $args['reference'] );Found base64_decode in file class-avada-patcher-apply-patch.php. 56: $setting = (array) json_decode( base64_decode( $setting ) );
  6. Security breaches : Use of base64_encode() Found base64_encode in file class-avada-patcher-admin-screen.php.
     return base64_encode( json_encode( $patches ) );
    Found base64_encode in file class-fusion-widget-tweets.php.
     $to_send     = base64_encode( $credentials );
  7. Unwanted files : hidden file(s) or folder(s) .editorconfig .gitignore .jscsrc .gitmodules .jshintrc .travis.yml .tx was found.
  8. Presence of iframes : iframes are sometimes used to load unwanted adverts and malicious code on another site Found <iframe height="100%" width="100%" src="https://www.youtube.com/embed/<?php echo $metadata['pyre_youtube_id'][0]; ?> in file custom_functions.php. 458: <iframe height='100%' width='100%' src='https://www.youtube.com/embed/<?php
  9. Malware : Operations on file system fopen was found in the file class-avada-theme-updater.php 58: /*$handle = fopen($filename, 'a');fwrite was found in the file class-avada-theme-updater.php 59: fwrite($handle, json_encode($request_string));60: fwrite($handle, json_encode($raw_response));*/fwrite was found in the file class-avada-theme-updater.php 59: fwrite($handle, json_encode($request_string));60: fwrite($handle, json_encode($raw_response));*/fopen was found in the file class.avadaredux_helpers.php 657: //$fp = fopen( $file, 'r' );fread was found in the file class.avadaredux_helpers.php 660: //$file_data = fread( $fp, 8192 );fclose was found in the file class.avadaredux_helpers.php 663: //fclose( $fp );fwrite was found in the file SocketPost.php 104: $this->socket->fwrite($request);fclose was found in the file SocketPost.php 111: $this->socket->fclose();file_get_contents was found in the file Post.php 68: return file_get_contents(self::SITE_VERIFY_URL, false, $context);fwrite was found in the file Socket.php 59: * fwrite61: * @see http://php.net/fwrite66: public function fwrite($string, $length = null)68: return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $lengtfwrite was found in the file Socket.php 59: * fwrite61: * @see http://php.net/fwrite66: public function fwrite($string, $length = null)68: return fwrite($this->handle, $string, (is_null($length) ? strlen($string) : $lengtfclose was found in the file Socket.php 95: * fclose97: * @see http://php.net/fclose100: public function fclose()102: return fclose($this->handle);fclose was found in the file Socket.php 95: * fclose97: * @see http://php.net/fclose100: public function fclose()102: return fclose($this->handle);file_get_contents was found in the file parsers.php 69: $success = $dom->loadXML( file_get_contents( $file ) );273: if ( ! xml_parse( $xml, file_get_contents( $file ), true ) ) {file_get_contents was found in the file parsers.php 69: $success = $dom->loadXML( file_get_contents( $file ) );273: if ( ! xml_parse( $xml, file_get_contents( $file ), true ) ) {fopen was found in the file parsers.php 421: $fp = $this->fopen( $file, 'r' );647: function fopen( $filename, $mode = 'r' ) {650: return fopen( $filename, $mode );fclose was found in the file parsers.php 470: $this->fclose($fp);665: function fclose( $fp ) {668: return fclose( $fp );fopen was found in the file parsers.php 421: $fp = $this->fopen( $file, 'r' );647: function fopen( $filename, $mode = 'r' ) {650: return fopen( $filename, $mode );fopen was found in the file parsers.php 421: $fp = $this->fopen( $file, 'r' );647: function fopen( $filename, $mode = 'r' ) {650: return fopen( $filename, $mode );fclose was found in the file parsers.php 470: $this->fclose($fp);665: function fclose( $fp ) {668: return fclose( $fp );fclose was found in the file parsers.php 470: $this->fclose($fp);665: function fclose( $fp ) {668: return fclose( $fp );file_get_contents was found in the file importer.php 649: $theme_options_json = file_get_contents( $theme_options_file );675: $widgets_json = file_get_contents( $widgets_json );file_get_contents was found in the file importer.php 649: $theme_options_json = file_get_contents( $theme_options_file );675: $widgets_json = file_get_contents( $widgets_json );file_get_contents was found in the file class-avada-migrate.php 459: $debug_content = file_get_contents( $debug_file_path );file_put_contents was found in the file class-avada-migrate.php 462: file_put_contents( $debug_file_path, $debug_content );
  10. Malware : Network operations curl_init was found in the file Curl.php 36: * @see http://php.net/curl_init42: return curl_init($url);curl_exec was found in the file Curl.php 57: * @see http://php.net/curl_exec63: return curl_exec($ch);fsockopen was found in the file SocketPost.php 33: * Sends a POST request to the reCAPTCHA service, but makes use of fsockopen()91: if (false === $this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30)) {fsockopen was found in the file SocketPost.php 33: * Sends a POST request to the reCAPTCHA service, but makes use of fsockopen()91: if (false === $this->socket->fsockopen('ssl://' . self::RECAPTCHA_HOST, 443, $errno, $errstr, 30)) {fsockopen was found in the file Socket.php 38: * fsockopen40: * @see http://php.net/fsockopen48: public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = nul50: $this->handle = fsockopen($hostname, $port, $errno, $errstr, (is_null($timeout) ? ini_get('fsockopen was found in the file Socket.php 38: * fsockopen40: * @see http://php.net/fsockopen48: public function fsockopen($hostname, $port = -1, &$errno = 0, &$errstr = '', $timeout = nul50: $this->handle = fsockopen($hostname, $port, $errno, $errstr, (is_null($timeout) ? ini_get('
  11. Admin menu : Themes should use add_theme_page() for adding admin pages. File class-avada-admin.php : 240: $avada_menu_page_creation_method = 'add_menu_page';File class-avada-admin.php : 241: $avada_submenu_page_creation_method = 'add_submenu_page';File class-tgm-plugin-activation.php : 642: $this->page_hook = call_user_func( 'add_submenu_page', $args['parent_slug'], $args['page_title'], $args['menu_tFile class-avada-avadaredux.php : 118: add_submenu_page( 'themes.php', __( 'Avada Options have moved!', 'Avada' ),File class-tivwp-dm.php : 111: add_plugins_page(118: add_plugins_page(File class-tivwp-dm.php : 111: add_plugins_page(118: add_plugins_page(File welcome.php : 197: $page = 'add_management_page';File framework.php : 1344: // wrappers and need to be appened to using add_submenu_page.1395: $this->page = call_user_func( 'add_submenu_page', $page_parent, $page_title, $menu_title, $page_permission1453: call_user_func( 'add_submenu_page', $this->args['page_slug'], $section['title'], $section['tFile framework.php : 1344: // wrappers and need to be appened to using add_submenu_page.1395: $this->page = call_user_func( 'add_submenu_page', $page_parent, $page_title, $menu_title, $page_permission1453: call_user_func( 'add_submenu_page', $this->args['page_slug'], $section['title'], $section['tFile framework.php : 1421: $this->page = call_user_func( 'add_menu_page', $this->args['page_title'], $this->args['menu_title'], $thisFile framework.php : 1344: // wrappers and need to be appened to using add_submenu_page.1395: $this->page = call_user_func( 'add_submenu_page', $page_parent, $page_title, $menu_title, $page_permission1453: call_user_func( 'add_submenu_page', $this->args['page_slug'], $section['title'], $section['tFile class-avada-layout-bbpress.php : 31: add_action( 'bbp_template_before_search', array( $this, 'add_search_page_search_form' ) );119: public function add_search_page_search_form() {
  12. Included plugins : Zip file found Plugins are not allowed in themes. The zip file found was revslider.zip layerslider.zip fusion-core.zip fusion_slider.zip layerslider_export_2015-07-10_at_11.44.29.zip avada_full_width.zip avada_page_slider.zip captions_tall.zip avada_small_slider.zip home3-rs.zip one-page-lp.zip.
Warning
  1. core scripts deregistered : Core scripts deregistrationFound wp_deregister_script in enqueue.php. Themes must not deregister core scripts. 215: wp_deregister_script( 'jquerySelect2' );Found wp_deregister_script in framework.php. Themes must not deregister core scripts. 562: wp_deregister_script( 'wpb_ace' );Found wp_deregister_script in class-avada-scripts.php. Themes must not deregister core scripts. 33: wp_deregister_script( 'novagallery_modernizr' );37: wp_deregister_script( 'ccgallery_modernizr' );49: wp_deregister_script( 'wc-cart-fragments' );56: wp_deregister_script( 'bootstrap' );60: wp_deregister_script( 'cssua' );64: wp_deregister_script( 'jquery.easyPieChart' );68: wp_deregister_script( 'excanvas' );72: wp_deregister_script( 'Froogaloop' );76: wp_deregister_script( 'imagesLoaded' );80: wp_deregister_script( 'jquery.infinitescroll' );84: wp_deregister_script( 'isotope' );88: wp_deregister_script( 'jquery.appear' );92: wp_deregister_script( 'jquery.touchSwipe' );96: wp_deregister_script( 'jquery.carouFredSel' );100: wp_deregister_script( 'jquery.countTo' );104: wp_deregister_script( 'jquery.countdown' );108: wp_deregister_script( 'jquery.cycle' );112: wp_deregister_script( 'jquery.easing' );116: wp_deregister_script( 'jquery.elasticslider' );120: wp_deregister_script( 'jquery.fitvids' );124: wp_deregister_script( 'jquery.flexslider' );128: wp_deregister_script( 'jquery.fusion_maps' );132: wp_deregister_script( 'jquery.hoverflow' );136: wp_deregister_script( 'jquery.hoverIntent' );140: wp_deregister_script( 'jquery.placeholder' );144: wp_deregister_script( 'jquery.toTop' );149: wp_deregister_script( 'jquery.waypoints' );153: wp_deregister_script( 'modernizr' );157: wp_deregister_script( 'jquery.requestAnimationFrame' );161: wp_deregister_script( 'jquery.mousewheel' );166: wp_deregister_script( 'ilightbox.packed' );171: wp_deregister_script( 'avada-lightbox' );175: wp_deregister_script( 'avada-header' );179: wp_deregister_script( 'avada-select' );183: wp_deregister_script( 'avada-parallax' );187: wp_deregister_script( 'avada-video-bg' );224: wp_deregister_script( 'avada' );
  2. special URIs : Presence of bad theme tagsTheme URI and Author URI should not be the same.
  3. theme tags : Presence of bad theme tagsFound wrong tag in style.css header.
  4. Text domain : Incorrect use of translation functions.Wrong installation directory for the theme name. The directory name must match the slug of the theme. This theme's correct slug and text-domain is avada-anzan-digital.
  5. Text domain : Incorrect use of translation functions.Found a translation function that is missing a text-domain. Function esc_attr_e, with the arguments in file list-widget.php.Found a translation function that has an incorrect number of arguments. Function _n, with the arguments 'View 1 %1$s', 'View All %2$s %3$s', total_events, 'the-events-calendar' in file single-day.php.Found a translation function that is missing a text-domain. Function esc_attr_x, with the arguments 'slug', 'Avada' in file class-avada-admin.php.Found a translation function that is missing a text-domain. Function __, with the arguments 'woocommerce' in file woo-config.php.Found a translation function that is missing a text-domain. Function _n_noop, with the arguments 'Avada' in file avada-tgm.php.Found a translation function that is missing a text-domain. Function _n_noop, with the arguments 'Avada' in file avada-tgm.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'No units were entered, falling back to using pixels. Saved value "%2$s" and not "%3$s".' in file validation-functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'No units were entered, falling back to using pixels. Saved value "%2$s" and not "%3$s".' in file validation-functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'No units were entered for %1s, falling back to using pixels. Saved value "%4$s" and not "%5$s".' in file validation-functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'No units were entered, falling back to using pixels. Saved value "%2$s" and not "%3$s".' in file validation-functions.php.Found a translation function that is missing a text-domain. Function __, with the arguments 'Must call in of after the "plugins_loaded" action.' in file class-tivwp-dm-controller.php.Found a translation function that is missing a text-domain. Function _e, with the arguments '&mdash; Select &mdash;' in file class-fusion-widget-menu.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Widget Sections' in file multiple_sidebars.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'name' in file multiple_sidebars.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'name' in file multiple_sidebars.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'name' in file multiple_sidebars.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'name' in file multiple_sidebars.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Migration Information' in file class-avada-migrate.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'link' in file class-avada-migrate.php.More than one text-domain is being used in this theme. This means the theme will not be compatible with WordPress.org language packs. The domains found are Avada, woocommerce, the-events-calendar, tribe-events-calendar-pro, total_events, sermon-manager, textdomain, tgmpa, fusion-core, avadaredux-framework, tivwp-dm, themecheck, bbpress, wordpress-importer.
  6. Plugin territory : Plugin territory functionalitiesThe theme uses the add_shortcode() function. Custom post-content shortcodes are plugin-territory functionality.
  7. Unwanted directories : GIT revision control directoryA.git was found.
  8. PHP short tags : Presence of PHP short tagsPHP short tags were found in file parsedown.php. "This practice is discouraged because they are only available if enabled with short_open_tag php.ini configuration file directive, or if PHP was configured with the --enable-short-tags option" (php.net), which is not the case on many servers.765: if (preg_match('/^\[(.+?)\]:[ ]*<?(\S+?)>?(?:[ ]+['\'(](.+)['\')])?[ ]*$/', $Line['text'], $matches))
  9. Hidden admin bar : Hidden admin Bar in CSSThemes should not hide admin bar. Detected in file style.css.
  10. Comment pagination : Declaration of comment paginationThe theme doesn't have comment pagination code in it. Use paginate_comments_links() to add comment pagination, or older previous_comments_link() and next_comments_link() functions.
  11. Editor style : Presence of editor styleNo reference to add_editor_style() was found in the theme. It is recommended that the theme implements editor styling, so as to make the editor content match the resulting post output in the theme, for a better user experience.
  12. I18N implementation : Proper use of _e(Possible variable $link_to_all found in translation function in list-widget.php. Translation function calls should not contain PHP variables. Possible variable $sidebar found in translation function in multiple_sidebars.php. Translation function calls should not contain PHP variables. Possible variable $sidebar found in translation function in multiple_sidebars.php. Translation function calls should not contain PHP variables. Possible variable $sidebar found in translation function in multiple_sidebars.php. Translation function calls should not contain PHP variables. Possible variable $sidebar found in translation function in multiple_sidebars.php. Translation function calls should not contain PHP variables.
  13. I18N implementation : Proper use of ___all(Possible variable $cvalue found in translation function in woo-config.php. Translation function calls should not contain PHP variables.
  14. I18N implementation : Proper use of _x(Possible variable $placeholder found in translation function in class-avada-admin.php. Translation function calls should not contain PHP variables.
  15. I18N implementation : Proper use of esc_attr_e(Possible variable $link_to_all found in translation function in list-widget.php. Translation function calls should not contain PHP variables.
  16. I18N implementation : Proper use of esc_attr_x(Possible variable $placeholder found in translation function in class-avada-admin.php. Translation function calls should not contain PHP variables.
  17. I18N implementation : Proper use of esc_html_e(Possible variable $sidebar found in translation function in multiple_sidebars.php. Translation function calls should not contain PHP variables. Possible variable $sidebar found in translation function in multiple_sidebars.php. Translation function calls should not contain PHP variables. Possible variable $sidebar found in translation function in multiple_sidebars.php. Translation function calls should not contain PHP variables. Possible variable $sidebar found in translation function in multiple_sidebars.php. Translation function calls should not contain PHP variables.
  18. Screenshot : Screenshot fileScreenshot size is 880x660px. Screenshot size should be 1200x900, to account for HiDPI displays. Any 4:3 image size is acceptable, but 1200x900 is preferred.Bad screenshot file extension ! File screenshot.png is not an actual JPG file. Detected type was : "image/png".
Tip-off
  1. favicon presence : Favicon managementPossible Favicon found in class-avada-head.php. Favicons are handled by the Site Icon setting in the customizer since version 4.3.
  2. Static links : Presence of hard-coded linksPossible hard-coded links were found in the file class-avada-upgrade.php.403: <li><strong>REMOVED:</strong> Fixed Mode for iPad is removed as a theme option. Fixed Mode is moved into a free plugin. <a href='https://theme-fusion.com/avada-doc/fixed-mode-for-ipad-portrait/' target='_424: You can view all update information here: <a href='http://theme-fusion.com/avada-doc/install-update/important-update-informatiPossible hard-coded links were found in the file class-avada-patcher-admin-screen.php.86: <span class='avada-auto-patcher learn-more'><a href='https://theme-fusion.com/avada-doc/avada-patcher/' target='_blank'><?php esPossible hard-coded links were found in the file welcome.php.478: <a href='http://docs.avadareduxframework.com/' class='docs button button-primary'>Do481: <a href='https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MMFMHWPossible hard-coded links were found in the file header_stickybar.tpl.php.19: <a href='https://theme-fusion.com/support' target='_blank'><span class='dashicons daPossible hard-coded links were found in the file multiple-featured-images.php.4: Description: Enables multiple featured images for posts and pages. If you like my plugin, feel free to give me reward ;) <a href='http://www.amazon.de/registry/wishlist/16KTW9ZG027C8' title='Amazon WishlisPossible hard-coded links were found in the file class-fusion-widget-facebook-page.php.119: <h4 style='line-height: 1.6em;'><?php _e( 'IMPORTANT: Please create a Facebook App and use its ID for features like sharing.', 'Avada' ); ?> <a href='https://developers.facebook.com/docs/apps/register' target='_blank'><?php _Possible hard-coded links were found in the file support.php.57: <a href='https://www.facebook.com/groups/AvadaUsers/' class='button button-large butPossible hard-coded links were found in the file install-demos.php.38: <p><strong><?php esc_attr_e( 'Solution 1:', 'Avada' ); ?></strong> <?php esc_attr_e( 'Import the demo using an alternate method.', 'Avada' ); ?><a href='https://theme-fusion.com/avada-doc/demo-content-info/alternate-demo-method/47: <p><strong><?php esc_attr_e( 'Solution 1:', 'Avada' ); ?></strong> <?php esc_attr_e( 'Import the demo using an alternate method.', 'Avada' ); ?><a href='https://theme-fusion.com/avada-doc/demo-content-info/alternate-demo-method/38: <p><strong><?php esc_attr_e( 'Solution 1:', 'Avada' ); ?></strong> <?php esc_attr_e( 'Import the demo using an alternate method.', 'Avada' ); ?><a href='https://theme-fusion.com/avada-doc/demo-content-info/alternate-demo-method/47: <p><strong><?php esc_attr_e( 'Solution 1:', 'Avada' ); ?></strong> <?php esc_attr_e( 'Import the demo using an alternate method.', 'Avada' ); ?><a href='https://theme-fusion.com/avada-doc/demo-content-info/alternate-demo-method/Possible hard-coded links were found in the file contact.php.71: 'description' => sprintf( esc_html__( 'Follow the steps in %s to get the site key.', 'Avada' ), '<a href='http://theme-fusion.com/avada-doc/pages/setting-up-contact-page/' target='_79: 'description' => sprintf( esc_html__( 'Follow the steps in %s to get the secret key.', 'Avada' ), '<a href='http://theme-fusion.com/avada-doc/pages/setting-up-contact-page/' target='_71: 'description' => sprintf( esc_html__( 'Follow the steps in %s to get the site key.', 'Avada' ), '<a href='http://theme-fusion.com/avada-doc/pages/setting-up-contact-page/' target='_79: 'description' => sprintf( esc_html__( 'Follow the steps in %s to get the secret key.', 'Avada' ), '<a href='http://theme-fusion.com/avada-doc/pages/setting-up-contact-page/' target='_Possible hard-coded links were found in the file footer.php.95: 'description' => sprintf( esc_html__( 'The entire height of the footer area (widgets + copyright) %1s View tutorial here %2s. Set a static height in px to enable sticky footer effect. Set to 0 to disable.', 'Avada' ), '<a href='https://theme-fusion.com/avada-doc/footer-special-effects/' target='_blank'
  3. Optional files : Presence of rtl stylesheet rtl.cssThis theme does not contain optional file rtl.php.
  4. Optional files : Presence of front page template file front-page.phpThis theme does not contain optional file front-page.php.
  5. Optional files : Presence of home template file home.phpThis theme does not contain optional file home.php.
  6. Optional files : Presence of category template file category.phpThis theme does not contain optional file category.php.
  7. Optional files : Presence of tag template file tag.phpThis theme does not contain optional file tag.php.
  8. Optional files : Presence of term template file taxonomy.phpThis theme does not contain optional file taxonomy.php.
  9. Optional files : Presence of date/time template file date.phpThis theme does not contain optional file date.php.
  10. Optional files : Presence of attachment template file attachment.phpThis theme does not contain optional file attachment.php.
  11. Optional files : Presence of image template file image.phpThis theme does not contain optional file image.php.
  12. Use of includes : Use of include or requireThe theme appears to use include or require : fusion-functions.php 932: require_once(ABSPATH . 'wp-admin/includes/file.php');982: require_once( ABSPATH . 'wp-admin/includes/image.php' ); If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : class-avada-admin.php 260: require_once( 'admin-screens/welcome.php' );264: require_once( 'admin-screens/support.php' );268: require_once( 'admin-screens/install-demos.php' );272: require_once( 'admin-screens/fusion-plugins.php' );276: require_once( 'admin-screens/system-status.php' ); If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : class-avada-dynamic-css.php 129: require_once( ABSPATH . '/wp-admin/includes/file.php' ); If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : class-avada-patcher-filesystem.php 28: require_once ( ABSPATH . '/wp-admin/includes/file.php' ); If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : class-avada-avadaredux-migration.php 747: require_once( ABSPATH . 'wp-admin/includes/media.php' );748: require_once( ABSPATH . 'wp-admin/includes/file.php' );749: require_once( ABSPATH . 'wp-admin/includes/image.php' ); If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : extension_accordion.php 79: //include_once($this->extension_dir . 'multi-media/inc/class.customizer.php') If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : field_repeater.php 421: require_once( $class_file ); If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : class-avada-avadaredux.php 61: require_once( dirname( __FILE__ ) . '/avadaredux-framework/avadaredux-frame64: require_once( dirname( __FILE__ ) . '/validation-functions.php' );66: require_once( dirname( __FILE__ ) . '/class-avada-avadaredux-addons.php' );723: require_once( ABSPATH . '/wp-admin/includes/file.php' );731: include( dirname( __FILE__ ) . '/assets/style.css' ); If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : class-tivwp-dm-controller.php 3: require_once 'class-tivwp-dm.php';4: require_once 'class-tivwp-dm-notices.php'; If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : welcome.php 374: require_once 'views/about.php';389: require_once 'views/changelog.php';404: require_once 'views/extensions.php';420: require_once 'views/support.php';435: require_once 'views/credits.php';450: require_once 'views/status_report.php'; If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : extension_customizer.php 750: require_once( $class_file ); If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : field_button_set.php 46: * ['format'] string Formatting options for paginate fields. Options include ('currency','nice','niceShort','timeAgoInWords' or a valid Date() f If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : framework.php 410: require_once 'core/dashboard.php';414: require_once 'core/newsflash.php';1702: require_once 'core/enqueue.php';2853: require_once 'core/enqueue.php';2911: require_once 'core/panel.php';3240: require_once 'core/panel.php'; If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : class-avada-contact.php 66: require_once( get_template_directory() . '/includes/recaptcha/src/autoload.68: require_once( get_template_directory() . '/includes/recaptcha/class-avada-r If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : mega-menu-framework.php 83: require_once( 'mega-menus.php' ); If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : importer.php 1022: require_once( ABSPATH . 'wp-admin/includes/image.php' ); If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : avada-functions.php 136: include( locate_template( 'templates/rollover.php' ) );188: include( locate_template( 'templates/featured-image-first.php' ) );600: include( locate_template( 'templates/related-posts.php' ) );621: include( locate_template( 'templates/pages-rich-snippets.php' ) );692: include( locate_template( 'templates/title-bar.php' ) );990: include_once( wp_normalize_path( ABSPATH . WPINC. '/class-http.php' ) );1011: require_once( ABSPATH . '/wp-admin/includes/file.php' ); If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : metaboxes.php 96: include 'options/options_es.php';100: include 'options/options_slide.php';142: <?php require_once( 'tabs/tab_' . $tab_name . '.php' ); ?> If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.The theme appears to use include or require : class-fusion-image-resizer.php 132: require_once( ABSPATH . '/wp-admin/includes/file.php' ); If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead. Otherwise, use include_once or require_once instead.
Other checked themes