Opened 13 months ago
Closed 13 months ago
#7627 closed theme (not-approved)
THEME: HDboilerplate - 1.1
| Reported by: | hxf148 | Owned by: | emiluzelac |
|---|---|---|---|
| Priority: | major | Keywords: | theme-hdboilerplate |
| Cc: | hxf148@… |
Description
HDboilerplate - 1.1
A HTML5, Widget ready clean template.
Theme URL - http://hdbolierplate.com
Author URL - http://haroldfudge.com
SVN - http://themes.svn.wordpress.org/hdboilerplate/1.1
ZIP - http://wordpress.org/extend/themes/download/hdboilerplate.1.1.zip?nostats=1
Diff with previous version: http://themes.trac.wordpress.org/changeset?old_path=/hdboilerplate/1.0&new_path=/hdboilerplate/1.1
All previous tickets for this theme: http://themes.trac.wordpress.org/query?col=id&col=summary&col=keywords&col=owner&col=status&col=resolution&keywords=~theme-hdboilerplate&order=id
Change History (2)
comment:1 Changed 13 months ago by emiluzelac
- Owner set to emiluzelac
- Status changed from new to assigned
comment:2 Changed 13 months ago by emiluzelac
- Resolution set to not-approved
- Status changed from assigned to closed
Note: See
TracTickets for help on using
tickets.


etc, please remove styles similar to this and add them in your stylesheet. When you embed styles they will be impossible to overwrite.
Remove completely
//error_reporting(E_ALL); //ini_set('display_errors', '1');this is also not how debug should be anyways, you can simply open your wp-config.php and change wp_debug to true
/** * For developers: WordPress debugging mode. * * Change this to true to enable the display of notices during development. * It is strongly recommended that plugin and theme developers use WP_DEBUG * in their development environments. */ define('WP_DEBUG', true);JS should not be used like this
<script src="<?php echo get_template_directory_uri() ?>/jquery-1.7.2.min.js" type="text/javascript"></script> <script type="text/javascript"> function mainmenu(){ $(" #nav a").removeAttr("title"); $(" #nav ul ").css({display: "none"}); // Opera Fix $(" #nav li").hover(function(){ $(this).find('ul:first').css({visibility: "visible",display: "none"}).show(0); },function(){ $(this).find('ul:first').css({visibility: "hidden"}); }); } $(document).ready(function() { mainmenu(); }); </script>please add the functions into example.js and call them from functions.php also there's no need to add jQuery, WordPress? handles this pretty nicely.
There's more than enough items that must be corrected before next submission. If you have any questions please ask them here, you can also visit Theme Review for more details about this review.