0
Validation results

Divi

Divi

WordPress 6.4.3 theme
0
This theme seems to be proprietary. Themecheck doesn't distribute commercial themes.
Critical alerts
  1. Title : Title The <title> tags can only contain a call to wp_title(). Use the wp_title filter to modify the output.
  2. Security breaches : Modification of PHP server settings Found ini_set in file Portability.php. 1837: @ini_set( 'memory_limit', '256M' );Found ini_set in file HTTPInterface.php. 373: @ini_set( 'log_errors_max_len', 0 );378: @ini_set( 'log_errors_max_len', $max_len );Found ini_set in file framework.php. 968: @ini_set( 'memory_limit', '256M' );Found ini_set in file core.php. 1777: ini_set( 'zlib.output_compression_level', 1 );
  3. Security breaches : Use of base64_decode() Found base64_decode in file Portability.php. 1679: if ( $filesystem->get_contents( $file ) === base64_decode( $image['encoded'] ) ) {1691: $filesystem->put_contents( $temp_file, base64_decode( $image['encoded'] ) );Found base64_decode in file dynamic-content.php. 1725: $json = base64_decode( $json );
  4. Security breaches : Use of base64_encode() Found base64_encode in file OAuth.php.
     return base64_encode( hash_hmac( 'sha1', $base_string, $key, true ) );
    Found base64_encode in file Portability.php.
     return base64_encode( $image );
     return base64_encode( $image );
    Found base64_encode in file Service.php.
     $this->request->HEADERS['Authorization'] = 'Basic ' . base64_encode( '{$username}:{$password}' );
    Found base64_encode in file Divider.php.
     $this->svg = base64_encode( $svg ); // phpcs:ignore
    Found base64_encode in file dynamic-content.php.
     return '@ET-DC@' . base64_encode( $result ) . '@';
  5. Presence of iframes : iframes are sometimes used to load unwanted adverts and malicious code on another site Found <iframe width="1080" height="608" src="%s" allow="%s" allowfullscreen> in file Text.php. 484: '<p><iframe width='1080' height='608' src='%s' allow='%s' allowfullscreen></ifr
  6. Malware : Operations on file system file_get_contents was found in the file SupportCenter.php 1236: // Early exit: internal PHP function `file_get_contents()` appears to be on lockdown1237: if ( ! function_exists( 'file_get_contents' ) ) {
  7. Malware : Network operations curl_init was found in the file view.php 205: $curl = curl_init();curl_exec was found in the file view.php 213: $preboot_script = curl_exec( $curl );
  8. Admin menu : Themes should use add_theme_page() for adding admin pages. File SupportCenter.php : 612: add_submenu_page(File admin.php : 42: add_submenu_page(File functions.php : 6669: $core_page = add_menu_page( 'Divi', 'Divi', 'edit_theme_options', 'et_divi_options', 'etFile functions.php : 6684: add_submenu_page( 'et_divi_options', esc_html__( 'Theme Options', 'Divi' ),6691: add_submenu_page( 'et_divi_options', esc_html__( 'Theme Customizer', 'Divi'6693: add_submenu_page( 'et_divi_options', esc_html__( 'Role Editor', 'Divi' ), e6696: add_submenu_page( 'et_divi_options', esc_html__( 'Divi Library', 'Divi' ), File functions.php : 6684: add_submenu_page( 'et_divi_options', esc_html__( 'Theme Options', 'Divi' ),6691: add_submenu_page( 'et_divi_options', esc_html__( 'Theme Customizer', 'Divi'6693: add_submenu_page( 'et_divi_options', esc_html__( 'Role Editor', 'Divi' ), e6696: add_submenu_page( 'et_divi_options', esc_html__( 'Divi Library', 'Divi' ), File functions.php : 6684: add_submenu_page( 'et_divi_options', esc_html__( 'Theme Options', 'Divi' ),6691: add_submenu_page( 'et_divi_options', esc_html__( 'Theme Customizer', 'Divi'6693: add_submenu_page( 'et_divi_options', esc_html__( 'Role Editor', 'Divi' ), e6696: add_submenu_page( 'et_divi_options', esc_html__( 'Divi Library', 'Divi' ), File functions.php : 6684: add_submenu_page( 'et_divi_options', esc_html__( 'Theme Options', 'Divi' ),6691: add_submenu_page( 'et_divi_options', esc_html__( 'Theme Customizer', 'Divi'6693: add_submenu_page( 'et_divi_options', esc_html__( 'Role Editor', 'Divi' ), e6696: add_submenu_page( 'et_divi_options', esc_html__( 'Divi Library', 'Divi' ),
  9. Hidden admin bar : Hidden admin Bar Themes should not hide admin bar. Detected in file : block-layout-preview.php.
  10. Inapropriate constants : Use of STYLESHEETPATH Constant STYLESHEETPATH' was found in the file functions.php. get_stylesheet_directory() should be used instead. 275: if ( defined( 'STYLESHEETPATH' ) && is_child_theme() ) {
  11. Inapropriate constants : Use of TEMPLATEPATH Constant TEMPLATEPATH was found in the file custom_functions.php. get_template_directory() should be used instead. 28: require_once TEMPLATEPATH . '/epanel/shortcodes/shortcodes.php';31: require_once TEMPLATEPATH . '/includes/page_templates/page_templates.php';34: require_once TEMPLATEPATH . '/includes/import_settings.php';
  12. Deprecated functions : get_bloginfo get_bloginfo( 'url' ) was found in the file WPHttp.php. Use home_url() instead.38: * Default WordPress/' . get_bloginfo( 'version' ) . '; ' . get_bloginfo( 'url' ).108: 'user-agent' => apply_filters( 'http_headers_useragent', 'WordPress/' . get_bloginfo( 'version' ) . '; ' . get_bloginfo( 'url' ) ),get_bloginfo( 'url' ) was found in the file HTTPInterface.php. Use home_url() instead.127: $this->USER_AGENT = 'WordPress/{$wp_version}; {$owner}/{$version}; ' . esc_url_raw( get_bloginfo( 'url' ) );
Warning
  1. core scripts deregistered : Core scripts deregistrationFound wp_deregister_script in framework.php. Themes must not deregister core scripts. 612: wp_deregister_script( $script );1154: wp_deregister_script( 'react' );1155: wp_deregister_script( 'react-dom' );
  2. theme tags : Presence of bad theme tagsThe tag responsive-layout has been deprecated, it must be removed from style.css header.
  3. 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 divi.
  4. Text domain : Incorrect use of translation functions.Found a translation function that has an incorrect number of arguments. Function esc_html__, with the arguments 'Elegant Themes API Error: ', message, 'et-core' in file SupportCenter.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'et-core' in file SupportCenter.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'et-core' in file SupportCenter.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'et-core' in file SupportCenter.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'et-core' in file SupportCenter.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'et-core' in file SupportCenter.php.Found a translation function that is missing a text-domain. Function __, with the arguments 'et-core' in file Updates.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'A valid URL was not provided.' in file WPHttp.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'User has blocked requests through HTTP.' in file WPHttp.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Destination directory for file streaming does not exist or is not writable.' in file WPHttp.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'The browser version you are currently using is outdated. Please update to the newest version.' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'You reached your server memory limit. Please try increasing your PHP memory limit.' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'This file cannot be imported. It may be caused by file_uploads being disabled in your php.ini. It may also be caused by post_max_size or/and upload_max_filesize being smaller than file selected. Please increase it or transfer more substantial data at the time.' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Invalid File format. You should be uploading a JSON file.' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'This file should not be imported in this context.' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Please select at least one item to export or disable the "Only export selected items" option' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Import estimated time remaining: %smin' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Export estimated time remaining: %smin' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Backup estimated time remaining: %smin' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Portability' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Export' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Import' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Exporting your %s will create a JSON file that can be imported into a different website.' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Export File Name' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Only export selected items' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Export Presets As Static Styles' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Export %s' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Cancel Export' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Importing a previously-exported %s file will overwrite all content currently on this page.' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Select a previously-exported Divi Builder Layouts file to begin importing items. Large collections of image-heavy exports may take several minutes to upload.' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Importing a previously-exported %s file will overwrite all current data. Please proceed with caution!' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Select File To Import' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'No File Selected' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Choose File' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Download backup before importing' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Import Presets' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Import %s' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Cancel Import' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_attr__, with the arguments 'Import & Export' in file Portability.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'The export process failed. Please refresh the page and try again.' in file Portability.php.Found a translation function that is missing a text-domain. Function __, with the arguments 'Once Monthly' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Got it, thanks!' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Help' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Left Sidebar' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Right Sidebar' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Left Sidebar' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Right Sidebar' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Fullwidth' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Right Sidebar' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Left Sidebar' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Right Sidebar' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Left Sidebar' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Fullwidth' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "General" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Logo" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Set As Logo" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "If you would like to use your own custom logo image click the Upload Image button." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Fixed Navigation Bar" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "By default the navigation bar stays on top of the screen at all times. We suggest to disable this option, if you need to use a logo taller than the default one." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable Divi Gallery" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable this if you want to replace the WordPress default gallery with the Divi-style gallery." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Color Pickers Default Palette" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Define the default color palette for color pickers in the Divi Builder." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Grab the first post image" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "By default thumbnail images are created using custom fields. However, if you would rather use the images that are already in your post for your thumbnail (and bypass using custom fields) you can activate this option. Once activated thumbnail images will be generated automatically using the first image in your post. The image must be hosted on your own server." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Blog Style Mode" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "By default the theme truncates your posts on index/homepages automatically to create post previews. If you would rather show your posts in full on index pages like a traditional blog then you can activate this feature." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Sidebar Layout" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can choose default sidebar layout" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Shop Page & Category Page Layout for WooCommerce" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can choose Shop Page & Category Page Layout for WooCommerce." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Google API Key" in file options_divi.php.Found a translation function that is missing a text-domain. Function __, with the arguments 'The Maps module uses the Google Maps API and requires a valid Google API Key to function. Before using the map module, please make sure you have added your API key here. Learn more about how to create your Google API Key <a target="_blank" href="%1$s">here</a>.' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enqueue Google Maps Script" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Disable this option to remove the Google Maps API script from your Divi Builder Pages. This may improve compatibility with third party plugins that also enqueue this script. Please Note: Modules that rely on the Google Maps API in order to function properly, such as the Maps and Fullwidth Maps Modules, will still be available but will not function while this option is disabled (unless you manually add Google Maps API script)." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Use Google Fonts" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Disable this option to remove the Google Fonts from your Divi Builder Pages." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Show Facebook Icon" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can choose to display the Facebook Icon on your homepage. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Show Twitter Icon" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can choose to display the Twitter Icon. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Show Google+ Icon" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can choose to display the Google+ Icon on your homepage. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Show Instagram Icon' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Here you can choose to display the Instagram Icon on your homepage. ' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Show RSS Icon" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can choose to display the RSS Icon. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Facebook Profile Url" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enter the URL of your Facebook Profile. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Twitter Profile Url" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enter the URL of your Twitter Profile." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Google+ Profile Url" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enter the URL of your Google+ Profile. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Instagram Profile Url' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Enter the URL of your Instagram Profile. ' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "RSS Icon Url" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enter the URL of your RSS feed. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Number of Products displayed on WooCommerce archive pages" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can designate how many WooCommerce products are displayed on the archive page. This option works independently from the Settings > Reading options in wp-admin." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Number of Posts displayed on Category page" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can designate how many recent articles are displayed on the Category page. This option works independently from the Settings > Reading options in wp-admin." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Number of Posts displayed on Archive pages" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can designate how many recent articles are displayed on the Archive pages. This option works independently from the Settings > Reading options in wp-admin." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Number of Posts displayed on Search pages" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can designate how many recent articles are displayed on the Search results pages. This option works independently from the Settings > Reading options in wp-admin." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Number of Posts displayed on Tag pages" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can designate how many recent articles are displayed on the Tag pages. This option works independently from the Settings > Reading options in wp-admin." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Date format" in file options_divi.php.Found a translation function that is missing a text-domain. Function __, with the arguments "This option allows you to change how your dates are displayed. For more information please refer to the WordPress codex here:<a href='http://codex.wordpress.org/Formatting_Date_and_Time' target='_blank'>Formatting Date and Time</a>" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Use excerpts when defined" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "This will enable the use of excerpts in posts or pages." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Responsive shortcodes" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable this option to make shortcodes respond to various screen sizes" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Google Fonts subsets" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "This will enable Google Fonts for Non-English languages." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Back To Top Button" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable this option to display Back To Top Button while scrolling" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Smooth Scrolling" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable this option to get the smooth scrolling effect with mouse wheel" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Disable Translations" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Disable translations if you don't want to display translated theme strings on your site." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable Responsive Images" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable this option to get responsive images size generated when uploading images and adding srcset attribute for images element." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Minify And Combine Javascript Files' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Use combined and minified javascript file to speed up your site\'s page load.' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Divi uses uncombined and unminified javascript files because "SCRIPT_DEBUG" constant on wp-config.php has been set to "true". Other plugin can enforce Divi to use uncombined and unminified javascript files by filtering "et_load_unminified_scripts" filter as well.' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Minify And Combine CSS Files' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Use combined and minified CSS file to speed up your site\'s page load.' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Divi uses uncombined and unminified CSS files because "SCRIPT_DEBUG" constant on wp-config.php has been set to "true". Other plugin can enforce Divi to use uncombined and unminified CSS files by filtering "et_load_unminified_styles" filter as well.' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Custom CSS" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can add custom css to override or extend default styles." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Memory Limit Increase" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Here you can disable automatic memory limit increase.' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Pages" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Categories" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "General Settings" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Exclude pages from the navigation bar" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can choose to remove certain pages from the navigation menu. All pages marked with an X will not appear in your navigation bar. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Show dropdown menus" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "If you would like to remove the dropdown menus from the pages navigation bar disable this feature." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Display Home link" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "By default the theme creates a Home link that, when clicked, leads back to your blog's homepage. If, however, you are using a static homepage and have already created a page called Home to use, this will result in a duplicate link. In this case you should disable this feature to remove the link." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Sort Pages Links" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can choose to sort your pages links." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Order Pages Links by Ascending/Descending" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can choose to reverse the order that your pages links are displayed. You can choose between ascending and descending." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Number of dropdown tiers shown" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "This options allows you to control how many teirs your pages dropdown menu has. Increasing the number allows for additional menu items to be shown." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Exclude categories from the navigation bar" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can choose to remove certain categories from the navigation menu. All categories marked with an X will not appear in your navigation bar. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Show dropdown menus" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "If you would like to remove the dropdown menus from the categories navigation bar disable this feature." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Hide empty categories" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "If you would like categories to be displayed in your navigationbar that don't have any posts in them then disable this option. By default empty categories are hidden" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Number of dropdown tiers shown" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "This options allows you to control how many teirs your pages dropdown menu has. Increasing the number allows for additional menu items to be shown." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Sort Categories Links by Name/ID/Slug/Count/Term Group" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "By default pages are sorted by name. However if you would rather have them sorted by ID you can adjust this setting." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Order Category Links by Ascending/Descending" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can choose to reverse the order that your categories links are displayed. You can choose between ascending and descending." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Disable top tier dropdown menu links" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "In some cases users will want to create parent categories or links as placeholders to hold a list of child links or categories. In this case it is not desirable to have the parent links lead anywhere, but instead merely serve an organizational function. Enabling this options will remove the links from all parent pages/categories so that they don't lead anywhere when clicked." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Single Post Layout" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Single Page Layout" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "General Settings" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Choose which items to display in the post info section" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can choose which items appear in the post info section on single post pages. This is the area, usually below the post title, which displays basic information about your post. The highlighted items shown below will appear. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Show comments on posts" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "You can disable this option if you want to remove the comments and comment form from single post pages. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Place Thumbs on Posts" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "By default thumbnails are placed at the beginning of your post on single post pages. If you would like to remove this initial thumbnail image to avoid repetition simply disable this option. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Place Thumbs on Pages" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "By default thumbnails are not placed on pages (they are only used on posts). However, if you want to use thumbnails on pages you can! Just enable this option. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Show comments on pages" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "By default comments are not placed on pages, however, if you would like to allow people to comment on your pages simply enable this option. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Post info section" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can choose which items appear in the post info section on pages. This is the area, usually below the post title, which displays basic information about your post. The highlighted items shown below will appear. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Show Thumbs on Index pages" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable this option to show thumbnails on Index Pages." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Homepage SEO" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Single Post Page SEO" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Index Page SEO" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments " Enable custom title " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "By default the theme uses a combination of your blog name and your blog description, as defined when you created your blog, to create your homepage titles. However if you want to create a custom title then simply enable this option and fill in the custom title field below. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments " Enable meta description" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "By default the theme uses your blog description, as defined when you created your blog, to fill in the meta description field. If you would like to use a different description then enable this option and fill in the custom description field below. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments " Enable meta keywords" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "By default the theme does not add keywords to your header. Most search engines don't use keywords to rank your site anymore, but some people define them anyway just in case. If you want to add meta keywords to your header then enable this option and fill in the custom keywords field below. " in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments " Enable canonical URL's" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Canonicalization helps to prevent the indexing of duplicate content by search engines, and as a result, may help avoid duplicate content penalties and pagerank degradation. Some pages may have different URLs all leading to the same place. For example domain.com, domain.com/index.html, and www.domain.com are all different URLs leading to your homepage. From a search engine's perspective these duplicate URLs, which also occur often due to custom permalinks, may be treated individually instead of as a single destination. Defining a canonical URL tells the search engine which URL you would like to use officially. The theme bases its canonical URLs off your permalinks and the domain name defined in the settings tab of wp-admin." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Homepage custom title (if enabled)" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "If you have enabled custom titles you can add your custom title here. Whatever you type here will be placed between the < title >< /title > tags in header.php" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Homepage meta description (if enabled)" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "If you have enabled meta descriptions you can add your custom description here." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Homepage meta keywords (if enabled)" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "If you have enabled meta keywords you can add your custom keywords here. Keywords should be separated by comas. For example: wordpress,themes,templates,elegant" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "If custom titles are disabled, choose autogeneration method" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "If you are not using cutsom post titles you can still have control over how your titles are generated. Here you can choose which order you would like your post title and blog name to be displayed, or you can remove the blog name from the title completely." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Define a character to separate BlogName and Post title" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can change which character separates your blog title and post name when using autogenerated post titles. Common values are | or -" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable custom titles" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "By default the theme creates post titles based on the title of your post and your blog name. If you would like to make your meta title different than your actual post title you can define a custom title for each post using custom fields. This option must be enabled for custom titles to work, and you must choose a custom field name for your title below." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable custom description" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "If you would like to add a meta description to your post you can do so using custom fields. This option must be enabled for descriptions to be displayed on post pages. You can add your meta description using custom fields based off the custom field name you define below." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable custom keywords" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "If you would like to add meta keywords to your post you can do so using custom fields. This option must be enabled for keywords to be displayed on post pages. You can add your meta keywords using custom fields based off the custom field name you define below." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable canonical URL's" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Canonicalization helps to prevent the indexing of duplicate content by search engines, and as a result, may help avoid duplicate content penalties and pagerank degradation. Some pages may have different URLs all leading to the same place. For example domain.com, domain.com/index.html, and www.domain.com are all different URLs leading to your homepage. From a search engine's perspective these duplicate URLs, which also occur often due to custom permalinks, may be treated individually instead of as a single destination. Defining a canonical URL tells the search engine which URL you would like to use officially. The theme bases its canonical URLs off your permalinks and the domain name defined in the settings tab of wp-admin." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Custom field Name to be used for title" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "When you define your title using custom fields you should use this value for the custom field Name. The Value of your custom field should be the custom title you would like to use." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Custom field Name to be used for description" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "When you define your meta description using custom fields you should use this value for the custom field Name. The Value of your custom field should be the custom description you would like to use." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Custom field Name to be used for keywords" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "When you define your keywords using custom fields you should use this value for the custom field Name. The Value of your custom field should be the meta keywords you would like to use, separated by comas." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "If custom titles are disabled, choose autogeneration method" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "If you are not using cutsom post titles you can still have control over hw your titles are generated. Here you can choose which order you would like your post title and blog name to be displayed, or you can remove the blog name from the title completely." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Define a character to separate BlogName and Post title" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can change which character separates your blog title and post name when using autogenerated post titles. Common values are | or -" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments " Enable canonical URL's" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Canonicalization helps to prevent the indexing of duplicate content by search engines, and as a result, may help avoid duplicate content penalties and pagerank degradation. Some pages may have different URLs all leading to the same place. For example domain.com, domain.com/index.html, and www.domain.com are all different URLs leading to your homepage. From a search engine's perspective these duplicate URLs, which also occur often due to custom permalinks, may be treated individually instead of as a single destination. Defining a canonical URL tells the search engine which URL you would like to use officially. The theme bases its canonical URLs off your permalinks and the domain name defined in the settings tab of wp-admin." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable meta descriptions" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Check this box if you want to display meta descriptions on category/archive pages. The description is based off the category description you choose when creating/edit your category in wp-admin." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Choose title autogeneration method" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can choose how your titles on index pages are generated. You can change which order your blog name and index title are displayed, or you can remove the blog name from the title completely." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Define a character to separate BlogName and Post title" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can change which character separates your blog title and index page name when using autogenerated post titles. Common values are | or -" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Code Integration" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable header code" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Disabling this option will remove the header code below from your blog. This allows you to remove the code while saving it for later use." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable body code" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Disabling this option will remove the body code below from your blog. This allows you to remove the code while saving it for later use." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable single top code" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Disabling this option will remove the single top code below from your blog. This allows you to remove the code while saving it for later use." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable single bottom code" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Disabling this option will remove the single bottom code below from your blog. This allows you to remove the code while saving it for later use." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Add code to the < head > of your blog" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Any code you place here will appear in the head section of every page of your blog. This is useful when you need to add javascript or css to all pages." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Add code to the < body > (good for tracking codes such as google analytics)" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Any code you place here will appear in body section of all pages of your blog. This is usefull if you need to input a tracking pixel for a state counter such as Google Analytics." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Add code to the top of your posts" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Any code you place here will be placed at the top of all single posts. This is useful if you are looking to integrating things such as social bookmarking links." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Add code to the bottom of your posts, before the comments" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Any code you place here will be placed at the bottom of all single posts. This is useful if you are looking to integrating things such as social bookmarking links." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "General" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Username' in file options_divi.php.Found a translation function that is missing a text-domain. Function __, with the arguments '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href="https://www.elegantthemes.com/members-area/api/" target="_blank">log in</a> to your Elegant Themes account and navigate to the <strong>Account > API Key</strong> page. <a href="http://www.elegantthemes.com/gallery/divi/documentation/update/" target="_blank">Learn more here</a></em>. If you still get this message, please make sure that your Username and API Key have been entered correctly' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'API Key' in file options_divi.php.Found a translation function that is missing a text-domain. Function __, with the arguments '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href="https://www.elegantthemes.com/members-area/api/" target="_blank">log in</a> to your Elegant Themes account and navigate to the <strong>Account > API Key</strong> page. <a href="http://www.elegantthemes.com/gallery/divi/documentation/update/" target="_blank">Learn more here</a></em>. If you still get this message, please make sure that your Username and API Key have been entered correctly' in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Manage Un-widgetized Advertisements" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enable Single Post 468x60 banner" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Enabling this option will display a 468x60 banner ad on the bottom of your post pages below the single post content. If enabled you must fill in the banner image and destination url below." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Input 468x60 advertisement banner image" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can provide 468x60 banner image url" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Input 468x60 advertisement destination url" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Here you can provide 468x60 banner destination url" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Input 468x60 adsense code" in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments "Place your adsense code here." in file options_divi.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Previous' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Next' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Tweet' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Member Login' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Username: ' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Password: ' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Login' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Add a Tooltip Text' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Click here to learn more' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Previous' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Next' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Join Now' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Add ET Learn more block' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Add ET Box' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Add ET Button' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Add ET Tabs' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Add Author Bio' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Shortcodes' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Caption' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Caption goes here' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Caption title goes here' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'State' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Select between expanded and closed state' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Content' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Content goes here' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Content text or html' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Type' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Type of the box' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Content' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Content goes here' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Content text or html' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Link' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'URL' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Type' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Choose button type' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Color' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Choose button color' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Content' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Link text' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Content text or html' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Icon' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Used for icon button type' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Open link in new window' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Select yes if the link should be opened in a new window' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Slider Type' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Select Slider Type here' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Effect' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Select Animation Effect' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Auto' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Choose yes if you want for automatic slider animation' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Auto Speed' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Automattic slider speed (works only if Auto is set to yes)' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Tab Text' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Tab Content' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Content goes here' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Paste image url here, if you chose "images" slider type' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Image Url' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Author Image URL' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Use resizing' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Content' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Content goes here' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments '+ Add One More Tab' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Image Height' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Image Width' in file shortcodes.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments '&hellip;' in file custom_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Home' in file custom_functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Archives' in file custom_functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Search results for "%s"' in file custom_functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments '404 Not Found' in file custom_functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Currently viewing archives from %1$s' in file custom_functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Search Results for: %s' in file custom_functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Image doesn\'t exist' in file custom_functions.php.Found a translation function that is missing a text-domain. Function __, with the arguments '<div class="updated"><p>This is a fresh installation of %1$s theme. Don\'t forget to go to <a href="%2$s">ePanel</a> to set it up. This message will disappear once you have clicked the Save button within the <a href="%2$s">theme\'s options page</a>.</p></div>' in file custom_functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Help' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Options' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Theme Options' in file core_functions.php.Found a translation function that is missing a text-domain. Function _x, with the arguments 'Ads', 'site ads placement areas' in file core_functions.php.Found a translation function that is missing a text-domain. Function _x, with the arguments 'Colorization', 'site color scheme' in file core_functions.php.Found a translation function that is missing a text-domain. Function _x, with the arguments 'General', 'general options' in file core_functions.php.Found a translation function that is missing a text-domain. Function _x, with the arguments 'Integration', 'integrate third-party code' in file core_functions.php.Found a translation function that is missing a text-domain. Function _x, with the arguments 'Layout', 'page/post' in file core_functions.php.Found a translation function that is missing a text-domain. Function _x, with the arguments 'Navigation', 'navigation menu' in file core_functions.php.Found a translation function that is missing a text-domain. Function _x, with the arguments 'SEO', 'search engine optimization' in file core_functions.php.Found a translation function that is missing a text-domain. Function _x, with the arguments 'Support', 'documentation links' in file core_functions.php.Found a translation function that is missing a text-domain. Function _x, with the arguments 'Updates', 'theme updates' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'settings saved.' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'settings reset.' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Save Changes' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments '%s Theme Options' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_attr_e, with the arguments 'Reset to Defaults' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Reset to Defaults' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Reset' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_attr_e, with the arguments 'Upload' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments "You don't have pages" in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_x, with the arguments 'Clear', 'clear static resources' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'No available options.' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Save Changes' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Reset' in file core_functions.php.Found a translation function that is missing a text-domain. Function __, with the arguments 'This will return all of the settings throughout the options page to their default values. <strong>Are you sure you want to do this?</strong>' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_attr_e, with the arguments 'Yes' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'No' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Enabled' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Disabled' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments "Author" in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments "Date" in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments "Categories" in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments "Comments" in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments "Ratings" in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Choose an Image' in file core_functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments '%s Theme Options' in file core_functions.php.Found a translation function that is missing a text-domain. Function __, with the arguments 'Description' in file Layout.php.Found a translation function that is missing a text-domain. Function esc_html_x, with the arguments 'Submit Comment', 'et_builder' in file helpers.php.Found a translation function that is missing a text-domain. Function _x, with the arguments 'Subtitle goes Here', 'et_builder' in file helpers.php.Found a translation function that is missing a text-domain. Function _x, with the arguments '<p>Your content goes here. Edit or remove this text inline or in the module Content settings. You can also style every aspect of this content in the module Design settings and even apply custom CSS to this text in the module Advanced settings.</p>', 'et_builder' in file helpers.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'The first time presets are saved, settings will be migrated from the retired Module Customizer. This may result in slight text size changes in 1/3 and 1/4 columns and some slight padding changes in some modules.' in file helpers.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Apply Presets To Exported Layout' in file helpers.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'The above custom field is not fully supported and has been rendered as a standard input.' in file helpers.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'et_builder' in file theme-builder.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'et_builder' in file theme-builder.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'et_builder' in file Map.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Next Post' in file PostsNavigation.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Previous Post' in file PostsNavigation.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'et_builder' in file FullwidthMap.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Include IP Address' in file Signup.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments in file ErrorReport.php.Found a translation function that is missing a text-domain. Function __, with the arguments '' in file Library.php.Found a translation function that is missing a text-domain. Function __, with the arguments '@categories' in file Library.php.Found a translation function that is missing a text-domain. Function __, with the arguments '@packs' in file Library.php.Found a translation function that is missing a text-domain. Function __, with the arguments '@layoutsLong' in file Library.php.Found a translation function that is missing a text-domain. Function __, with the arguments '@layoutsShort' in file Library.php.Found a translation function that is missing a text-domain. Function __, with the arguments '%d Pages' in file Library.php.Found a translation function that is missing a text-domain. Function __, with the arguments '%d Page' in file Library.php.Found a translation function that is missing a text-domain. Function __, with the arguments 'Find A Page' in file Library.php.Found a translation function that is missing a text-domain. Function __, with the arguments 'Status' in file Library.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Section' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Row' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Modules' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Documentation' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Sections' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Rows' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Regular' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Specialty' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Fullwidth' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Rows' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Section' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Row' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Modules' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Documentation' in file functions.php.Found a translation function that is missing a text-domain. Function esc_html__, with the arguments 'Disable Memory Limit Increase' in file core.php.Found a translation function that is missing a text-domain. Function esc_html_e, with the arguments 'Read Divi Documentation' in file installation.php.Found a translation function that is missing a text-domain. Function __, with the arguments 'Welcome to Divi! Before diving in to your new theme, please visit the <a style="color: #fff; font-weight: bold;" href="%1$s" target="_blank">Divi Documentation</a> page for access to dozens of in-depth tutorials.' in file functions.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 et_core, et_builder, et-core, message, bloom, Divi, default, custom_module, et-builder, woocommerce, divi.
  5. Plugin territory : Plugin territory functionalitiesThe theme uses the register_post_type() function, which is plugin-territory functionality.The theme uses the add_shortcode() function. Custom post-content shortcodes are plugin-territory functionality.
  6. Hidden admin bar : Hidden admin Bar in CSSThemes should not hide admin bar. Detected in file style.css.
  7. Custom elements : Presence of custom headerNo reference to custom header was found in the theme.
  8. I18N implementation : Proper use of _e(Possible variable $this found in translation function in SupportCenter.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in custom_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in installation.php. Translation function calls should not contain PHP variables.
  9. I18N implementation : Proper use of ___all(Possible variable $response found in translation function in SupportCenter.php. Translation function calls should not contain PHP variables. Possible variable $verified_activator found in translation function in SupportCenter.php. Translation function calls should not contain PHP variables. Possible variable $verified_activator found in translation function in SupportCenter.php. Translation function calls should not contain PHP variables. Possible variable $this found in translation function in SupportCenter.php. Translation function calls should not contain PHP variables. Possible variable $this found in translation function in SupportCenter.php. Translation function calls should not contain PHP variables. Possible variable $status found in translation function in Updates.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. 969: array( 'name' => esc_html__( 'Enable Single Post 468x60 banner', $themename ),Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. 973: 'desc' => esc_html__( 'Enabling this option will display a 468x60 banner ad on the bottom of Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. 976: array( 'name' => esc_html__( 'Input 468x60 advertisement banner image', $themename ),Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. 980: 'desc' => esc_html__( 'Here you can provide 468x60 banner image url', $themename ),Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. 984: array( 'name' => esc_html__( 'Input 468x60 advertisement destination url', $themename ),Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. 988: 'desc' => esc_html__( 'Here you can provide 468x60 banner destination url', $themename ),Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. 992: array( 'name' => esc_html__( 'Input 468x60 adsense code', $themename ),Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in custom_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in custom_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in custom_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in custom_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in custom_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in custom_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $error found in translation function in theme-builder.php. Translation function calls should not contain PHP variables. Possible variable $description found in translation function in theme-builder.php. Translation function calls should not contain PHP variables. Possible variable $string found in translation function in Library.php. Translation function calls should not contain PHP variables. Possible variable $category found in translation function in Library.php. Translation function calls should not contain PHP variables. Possible variable $pack found in translation function in Library.php. Translation function calls should not contain PHP variables. Possible variable $title found in translation function in Library.php. Translation function calls should not contain PHP variables. Possible variable $short_name found in translation function in Library.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in functions.php. Translation function calls should not contain PHP variables.
  10. I18N implementation : Proper use of _x(Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $args found in translation function in Overflow.php. Translation function calls should not contain PHP variables. Possible variable $prefix found in translation function in Overflow.php. Translation function calls should not contain PHP variables. Possible variable $props found in translation function in Overflow.php. Translation function calls should not contain PHP variables. Possible variable $prefix found in translation function in Overflow.php. Translation function calls should not contain PHP variables. Possible variable $page_settings found in translation function in functions.php. Translation function calls should not contain PHP variables.
  11. I18N implementation : Proper use of esc_attr_e(Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables.
  12. I18N implementation : Proper use of esc_html___all(Possible variable $response found in translation function in SupportCenter.php. Translation function calls should not contain PHP variables. Possible variable $verified_activator found in translation function in SupportCenter.php. Translation function calls should not contain PHP variables. Possible variable $verified_activator found in translation function in SupportCenter.php. Translation function calls should not contain PHP variables. Possible variable $this found in translation function in SupportCenter.php. Translation function calls should not contain PHP variables. Possible variable $this found in translation function in SupportCenter.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. 969: array( 'name' => esc_html__( 'Enable Single Post 468x60 banner', $themename ),Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. 973: 'desc' => esc_html__( 'Enabling this option will display a 468x60 banner ad on the boPossible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. 976: array( 'name' => esc_html__( 'Input 468x60 advertisement banner image', $themename ),Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. 980: 'desc' => esc_html__( 'Here you can provide 468x60 banner image url', $themename ),Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. 984: array( 'name' => esc_html__( 'Input 468x60 advertisement destination url', $themename ),Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. 988: 'desc' => esc_html__( 'Here you can provide 468x60 banner destination url', $themenamPossible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. 992: array( 'name' => esc_html__( 'Input 468x60 adsense code', $themename ),Possible variable $themename found in translation function in options_divi.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in custom_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in custom_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in custom_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in custom_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in custom_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $error found in translation function in theme-builder.php. Translation function calls should not contain PHP variables. Possible variable $description found in translation function in theme-builder.php. Translation function calls should not contain PHP variables.
  13. I18N implementation : Proper use of esc_html_e(Possible variable $this found in translation function in SupportCenter.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in shortcodes.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in custom_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables. Possible variable $themename found in translation function in installation.php. Translation function calls should not contain PHP variables.
  14. I18N implementation : Proper use of esc_html_x(Possible variable $themename found in translation function in core_functions.php. Translation function calls should not contain PHP variables.
  15. I18N implementation : Proper use of gettext(Possible variable $translation found in translation function in Translations.php. Translation function calls should not contain PHP variables. Possible variable $translation found in translation function in Translations.php. Translation function calls should not contain PHP variables.
  16. CSS files : Presence of text domainText Domain: is missing from your style.css header.
  17. CSS files : Presence of .sticky class.sticky css class is needed in theme css.
  18. CSS files : Presence of .bypostauthor class.bypostauthor css class is needed in theme css.
  19. 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.
Tip-off
  1. Static links : Presence of hard-coded linksPossible hard-coded links were found in the file SupportCenter.php.2840: __( 'Remote Access cannot be enabled because you do not have a valid API Key or your Elegant Themes subscription has expired. You can find your API Key by <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>logging inPossible hard-coded links were found in the file Updates.php.106: $message = et_get_safe_localization( __( 'For all Elegant Themes products, please <a href='http://www.elegantthemes.com/gallery/divi/documentation/update/' target='_b149: et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a> to your Elegant Themes account and navigate to the <strong>Account > API Key</strong> page. <a href='http://www.elegantthemes.com/gallery/divi/documentation/update/' target='_b170: $error_message = et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a> to your Elegant Themes account and navigate to the <strong>Account > API Key</strong> page. <a href='http://www.elegantthemes.com/gallery/divi/documentation/update/' target='_b149: et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a>170: $error_message = et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a>646: sprintf( 'The Elegant Themes API key you entered is %1$s. Please make sure that your API has been entered correctly and that it is <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>enabled</a149: et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a>170: $error_message = et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a>646: sprintf( 'The Elegant Themes API key you entered is %1$s. Please make sure that your API has been entered correctly and that it is <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>enabled</a149: et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a>170: $error_message = et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a>628: $messages[] = et_get_safe_localization( __( 'Your Elegant Themes subscription has expired. You must <a href='https://www.elegantthemes.com/members-area/' target='_blank'>renew your acc630: $messages[] = et_get_safe_localization( __( 'The Elegant Themes username you entered is invalid. Please enter a valid username to receive product updates. If you forgot your username you can <a href='https://www.elegantthemes.com/members-area/retrieve-username/' target='_bla646: sprintf( 'The Elegant Themes API key you entered is %1$s. Please make sure that your API has been entered correctly and that it is <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>enabled</a630: $messages[] = et_get_safe_localization( __( 'The Elegant Themes username you entered is invalid. Please enter a valid username to receive product updates. If you forgot your username you can <a href='https://www.elegantthemes.com/members-area/retrieve-username/' target='_bla149: et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a>170: $error_message = et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a>646: sprintf( 'The Elegant Themes API key you entered is %1$s. Please make sure that your API has been entered correctly and that it is <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>enabled</aPossible hard-coded links were found in the file VersionRollback.php.412: 'desc' => et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a>Possible hard-coded links were found in the file options_divi.php.926: 'desc' => et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a>938: 'desc' => et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a>926: 'desc' => et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a>938: 'desc' => et_get_safe_localization( __( '<em>Before you can receive product updates, you must first authenticate your Elegant Themes subscription. To do this, you need to enter both your Elegant Themes Username and your Elegant Themes API Key into the Updates Tab in your theme and plugin settings. To locate your API Key, <a href='https://www.elegantthemes.com/members-area/api/' target='_blank'>log in</a>Possible hard-coded links were found in the file Signup.php.634: 'description' => esc_html__( 'Enable this option to use custom fields in your opt-in form. Learn more <a href='https://www.elegantthemes.com/documentation/divi/modules/adding-custom-fiel642: 'message' => esc_html__( 'You have not defined any custom fields in your email provider account. Once you have defined some fields, click the 'Fetch Lists' button in the Email Account toggle above. Learn more <a href='https://www.elegantthemes.com/documentation/divi/modules/adding-custom-fiel634: 'description' => esc_html__( 'Enable this option to use custom fields in your opt-in form. Learn more <a href='https://www.elegantthemes.com/documentation/divi/modules/adding-custom-fiel642: 'message' => esc_html__( 'You have not defined any custom fields in your email provider account. Once you have defined some fields, click the 'Fetch Lists' button in the Email Account toggle above. Learn more <a href='https://www.elegantthemes.com/documentation/divi/modules/adding-custom-fielPossible hard-coded links were found in the file core.php.3426: '<a href='http://www.refreshyourcache.com/en/home/' class='et_builder_modal_action_bu6123: <p><a href='https://www.elegantthemes.com/blog/theme-releases/introducing-the-new-divi-Possible hard-coded links were found in the file tutorials.php.1: <a href='http://www.elegantthemes.com/members-area/tutorials/' target='_blank'><?phpPossible hard-coded links were found in the file installation.php.1: <a href='http://www.elegantthemes.com/gallery/divi/readme.html' target='_blank'><?phPossible hard-coded links were found in the file functions.php.137: $documentation_url = 'http://www.elegantthemes.com/gallery/divi/readme.html';6938: return sprintf( __( 'Designed by %1$s | Powered by %2$s', 'Divi' ), '<a href='http://www.elegantthemes.com' title='Premium WordPress Themes'>Elegant Them
  2. Optional files : Presence of front page template file front-page.phpThis theme does not contain optional file front-page.php.
  3. Optional files : Presence of home template file home.phpThis theme does not contain optional file home.php.
  4. Optional files : Presence of category template file category.phpThis theme does not contain optional file category.php.
  5. Optional files : Presence of tag template file tag.phpThis theme does not contain optional file tag.php.
  6. Optional files : Presence of term template file taxonomy.phpThis theme does not contain optional file taxonomy.php.
  7. Optional files : Presence of author template file author.phpThis theme does not contain optional file author.php.
  8. Optional files : Presence of date/time template file date.phpThis theme does not contain optional file date.php.
  9. Optional files : Presence of archive template file archive.phpThis theme does not contain optional file archive.php.
  10. Optional files : Presence of search results template file search.phpThis theme does not contain optional file search.php.
  11. Optional files : Presence of attachment template file attachment.phpThis theme does not contain optional file attachment.php.
  12. Optional files : Presence of image template file image.phpThis theme does not contain optional file image.php.
  13. Use of includes : Use of include or requireThe theme appears to use include or require : updates_init.php 3: require_once 'components/Updates.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 : SupportCenter.php 395: require_once( ABSPATH . 'wp-admin/includes/plugin.php' );399: require_once( ABSPATH . 'wp-admin/includes/ms.php' );401: require_once( ABSPATH . 'wp-admin/includes/user.php' );2314: require_once( ABSPATH . 'wp-admin/includes/user.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 : VersionRollback.php 345: require_once( ABSPATH . 'wp-admin/includes/class-wp-upgrader.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 : SilentThemeUpgraderSkin.php 2: require_once( ABSPATH . 'wp-admin/includes/class-wp-upgrader.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 : HTTPInterface.php 427: require_once 'lib/WPHttp.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 : MailPoet.php 44: require_once( ET_CORE_PATH . 'components/api/email/_MailPoet3.php' );48: require_once( ET_CORE_PATH . 'components/api/email/_MailPoet2.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 : Providers.php 222: * @param string $type The component type to include ('official'|'third-party'|'all'). Default is 'all'.239: * @param string $type The component type to include ('official'|'third-party'|'all'). Default is 'all'.280: * @param string $type The component type to include ('official'|'third-party'|'all'). Default is 'all'. 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 : Providers.php 191: * @param string $type The component type to include ('official'|'third-party'|'all'). Default is 'all'.210: * @param string $type The component type to include ('official'|'third-party'|'all'). Default is 'all'.236: * @param string $type The component type to include ('official'|'third-party'|'all'). Default is 'all'. 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 : SupportCenterMUAutoloader.php 38: require_once( $plugin ); 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-et-builder-settings.php 11: require_once 'module/field/Factory.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-et-builder-element.php 711: require_once 'module/settings/Migration.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 : DiviExtension.php 241: 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 : Shop.php 3: require_once 'helpers/Overlay.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 : PostSlider.php 3: require_once 'helpers/Slider.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 : FullwidthSlider.php 3: require_once 'helpers/Slider.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 : FullwidthPostSlider.php 3: require_once 'helpers/Slider.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 : Migration.php 102: 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 : Blog.php 3: require_once 'helpers/Overlay.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 : BackgroundLayout.php 9: require_once 'ResponsiveOptions.php';14: require_once 'HoverOptions.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 : StyleProcessor.php 16: require_once 'ResponsiveOptions.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 : Font.php 9: require_once 'ResponsiveOptions.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 : SliderItem.php 3: require_once 'helpers/Slider.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 : Slider.php 3: require_once 'helpers/Slider.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 : advanced-custom-fields-pro.php 10: require_once 'advanced-custom-fields.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 : wp-smush-pro.php 10: require_once 'wp-smushit.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 : autoload.php 21: require_once 'main-structure-elements.php';24: require_once 'module/helpers/MultiValue.php';27: require_once 'module/helpers/Overflow.php';30: require_once 'module/helpers/Alignment.php';33: require_once 'module/helpers/Sizing.php';36: require_once 'module/helpers/Height.php';39: require_once 'module/helpers/HoverOptions.php';42: require_once 'module/helpers/StickyOptions.php';45: require_once 'module/helpers/MaxHeight.php';48: require_once 'module/helpers/MaxWidth.php';51: require_once 'module/helpers/MinHeight.php';54: require_once 'module/helpers/ResponsiveOptions.php';57: require_once 'module/helpers/Slider.php';60: require_once 'module/helpers/TransitionOptions.php';63: require_once 'module/helpers/Width.php';66: require_once 'module/helpers/motion/Motion.php';69: require_once 'module/helpers/motion/Sanitizer.php';72: require_once 'module/helpers/motion/Opacity.php';75: require_once 'module/helpers/motion/Translate.php';78: require_once 'module/helpers/motion/Scale.php';81: require_once 'module/helpers/motion/Rotate.php';84: require_once 'module/helpers/motion/Blur.php';87: require_once 'module/field/Base.php';90: require_once 'module/field/Factory.php';93: require_once 'module/helpers/Overlay.php';96: require_once 'module/helpers/MultiViewOptions.php';99: require_once 'module/helpers/OptionTemplate.php';102: require_once 'module/helpers/StyleProcessor.php';105: require_once 'module/helpers/Font.php';108: require_once 'module/helpers/Background.php';111: require_once 'module/helpers/BackgroundLayout.php';115: require_once 'module/helpers/WooCommerceModules.php';119: require_once 'feature/I18n.php';122: require_once 'module/helpers/class-et-builder-module-helper-media.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