-
AuthorPosts
-
December 24th, 2014 at 04:42 #28801Frank Carston
Since WordPress 4.1 release, new updated parameters needed for Parabola. Found the following:
REQUIRED: The <title> tags can only contain a call to wp_title(). Use the wp_title filter to modify the output
REQUIRED: Found a Customizer setting that did not have a sanitization callback function. Every call to the add_setting() method needs to have a sanitization callback function passed.
REQUIRED: wp_convert_bytes_to_hr() found in the file admin/admin-functions.php. Deprecated since version 3.6. Use size_format() instead.Line 58: $size = wp_convert_bytes_to_hr( $bytes );
REQUIRED: get_bloginfo(‘url’) was found in the file includes/theme-functions.php. Use home_url() instead.
Line 188: echo ‘‘.get_bloginfo(‘name’).’ » ‘;
Line 227: echo ‘‘.get_bloginfo(‘name’).’ ‘.’» ‘;
REQUIRED: bloginfo(‘url’) was found in the file includes/theme-functions.php. Use echo esc_url( home_url() ) instead.
Line 188: echo ‘‘.get_bloginfo(‘name’).’ » ‘;
Line 227: echo ‘‘.get_bloginfo(‘name’).’ ‘.’» ‘;
RECOMMENDED: No reference to add_theme_support( “title-tag” ) was found in the theme. It is recommended that the theme implement this functionality for WordPress 4.1 and above.
INFO: Possible hard-coded links were found in the file admin/main.php.
Line 273: Parabola Homepage
Line 274: Support
Line 275: Cryout Creations
Line 303: Parabola v<?php echo PARABOLA_VERSION; ?> by Cryout Creations
Line 360: $parabola_news = fetch_feed( array( ‘http://www.cryoutcreations.eu/cat/parabola/feed/’) );
INFO: Possible hard-coded links were found in the file admin/customizer.php.
Line 13: ‘<b>‘.
INFO: includes/theme-setup.php The theme appears to use include or require. If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead.
Line 81: require_once( $locale_file );
INFO: admin/main.php The theme appears to use include or require. If these are being used to include separate sections of a template from independent files, then get_template_part() should be used instead.
Line 5: require_once(dirname(__FILE__) . ‘/defaults.php’);
Line 7: require_once(dirname(dirname(__FILE__)) . ‘/includes/custom-styles.php’);
Line 13: require_once(dirname(__FILE__) . ‘/settings.php’);
Line 15: require_once(dirname(__FILE__) . ‘/customizer.php’);
Line 17: require_once(dirname(__FILE__) . ‘/admin-functions.php’);
Line 19: require_once(dirname(__FILE__) . ‘/sanitize.php’);
Line 21: include(dirname(__FILE__) . ‘/schemes.php’);
December 25th, 2014 at 14:54 #28828WaltThis used to be a good theme like a year ago. Unfortunately, with all the updates to WP, the theme itself lacks sufficient updates to keep it up to date and compatible.
I have also found that if you actually pay for a theme (like on Themeforest or Elegant Themes) there is a LOT more functionality, compatibility, and it’s virtually limitless to what you are able to do. Plus, paid themes generally come with top notch support, as opposed to this set of themes where the author only drops by about once a month to answer a few questions.
(Not knockin you or your products Zed, just calling it how I see it)
-
AuthorPosts
The topic ‘errors found for Parabola.’ is closed to new replies.