Coder Social home page Coder Social logo

html5-reset-wordpress-theme's People

Contributors

adriandmitroca avatar cbetancourt avatar chyuaner avatar ckhicks avatar crs1138 avatar cwsites avatar epierpont avatar fxbenard avatar jessiehan avatar jodok avatar mheesters avatar murtaugh avatar ninique avatar samusgray avatar timnovinger avatar webmaster128 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

html5-reset-wordpress-theme's Issues

Problem with Nivo Slider

Hi, I'm trying to install Nivo Slider in my Wordpress theme (not a s a plugin, but baked into my custom theme) and having real problems getting it to work properly. Everything seems to be set right so wondering if it is linked to something in HTML5Reset theme?

Something to do with Javascript placement perhaps?

Thanks,
Ab

searchform.php

php bloginfo('siteurl'); ?>" id="searchform" method="get">

should be replaced with

form role="search" method="get" id="searchform" action="">

News/archives links not working

I've found that when displaying the archives, clicking on a month doesn't take you there, it just displays the most recent posts (depending on how many you want to display). Same story with the pagination links. Page 2 and below display page 1 posts - ie the most recent.

Is there a fix for this? I couldn't see one.

Clean Head Code will Be rejected

He not sure if your plan is to get this into the WordPress.org repository but I can tell you as I have been part of the theme-review team for a while now, the removal of rsd_link and wlwmanifest_link or any other standard output of wp_head will see your theme rejected as they feel this should be up to the end user, not the developer. Just an FYI

moved issue: localisation WordPress HTML5-Reset

from senlin:

"Your brand new WordPress Theme HTML5-Reset looks fantastic in all aspects but one: localisation.

Everyone is so hypered up about HTML5 and CSS3 and people come with whole new sets of tools, tips and tricks, but the basics are once again simply ignored.

Localisation would make the WordPress HTML5-Reset theme a true gem for the entire world to be admired!"

style.css not loading

Testing this theme out and converting it over to scss, however the main style sheet is returning an error 404. The reset is loading correctly though.

Tested in Chrome. Seems to work if the stylesheet is loaded from the functions file though.

Issue seems to be with using: (minus the space after the first < bracket)
< link rel="stylesheet" href="/style.css" />

The get_stylesheet_uri is already returning the style.css. So removing it to be:
< link rel="stylesheet" href="" />

Makes it work correctly. Unless I am overlooking the reason for having it?

Functions.php & Sidebar - if(function_exists) or if(!function_exists)?

I'm writing a child theme and have a question about the functions.php file. On line 33, we declare the sidebar checking if the function exists:

    if (function_exists('register_sidebar')) {
        register_sidebar(array(
            'name' => __('Sidebar Widgets','html5reset' ),
            'id'   => 'sidebar-widgets',
            'description'   => __( 'These are widgets for the sidebar.','html5reset' ),
            'before_widget' => '<div id="%1$s" class="widget %2$s">',
            'after_widget'  => '</div>',
            'before_title'  => '<h2>',
            'after_title'   => '</h2>'
        ));
    }

Since wordpress loads the child theme first, doesn't this in effect ensure that the parent theme (html5reset) will overwrite my sidebar function? Shouldn't it be checking if the function doesn't exist to determine whether it needs to be declared?

In the codex wordpress suggests making themes pluggable by using:

if (!function_exists('do_xyz')) {
    function do_xyz() {
        //  Do something.
    }
}

Of course I can get around all of this by just declaring a different sidebar, but thought i'd point this out since it would be a more elegant solution.

Should we not expect updates?

Considering many comments here never receive comments from the theme author, and there have not been any committs to the core code in 2 years, should we expect that this is NOT going any further? That would be really sad, this serves such a foundational need in Wordpress theme development.

Would love to hear what the status is on development of this vital resource.

head ID

I've looked everywhere but I haven't been able to find the reason for using the id="www-sitename-com" in the head tag. Is this something I overlooked? Can we get some documentation about how to use it properly and what it's for?

wp_deregister_script 3.3

I turned on debug and received this message.

wp_deregister_script was called incorrectly. Scripts and styles should not be registered or enqueued until the wp_enqueue_scripts, admin_enqueue_scripts, or init hooks. Please see Debugging in WordPress for more information. (This message was added in version 3.3.)

Make user functions pluggable

In keeping with the recommendations for child theme creation, specifically the use of functions.php, could we wrap any custom functionality in replaceable functions? For example:

if( !function_exists('foo') ) {
    function foo() {
        //action code
    }
    add_action('wp_footer', 'foo');
}

My specific problem is with the version and position in the document of jQuery that is automatically inserted by the parent functions.php. I prefer a newer version of the JavaScript framework and to add it to the footer the document instead of the head.

Problem with the Theme Options!

The h4's and explanations divs are all empty after the "App: Windows 8" field. This needs to be fixed. The "Theme Options" will be useless without the field descriptions. I'm using the latest version (directly downloaded from GitHub).

Thanks,
Frederick Andersen

Meta Tags W3C Validator Errors

Hi, i have been using your starter theme the first time and i was wondering about the W3C validator errors regarding your meta tags?

Bad value X-UA-Compatible for attribute http-equiv on element meta.

Bad value title for attribute name on element meta: Keyword title is not registered.

Bad value Copyright for attribute name on element meta: Keyword copyright is not registered.

Search breaks with include()

Doing a search I get the following on every result:

Warning: include() [function.include]: Failed opening '/home/teamsiem/public_html/wp-content/themes/murtaugh-HTML5-Reset-Wordpress-Theme-9d5fa76/inc/meta.php' for inclusion (include_path='.:/usr/local/php52/pear') in /home/teamsiem/public_html/wp-content/themes/murtaugh-HTML5-Reset-Wordpress-Theme-9d5fa76/search.php on line 15

at http://teamsiems.com/

Page and Post links don't work

I've built a site using the HTML5 Reset Wordpress theme, and all has been great until I noticed that links (internal and external) that are created within a post or page are not clickable. The link appears with the correct styling, but just operate like text. The code appears correct, and the links do work when I activate the default TwentyEleven WP theme. There must be something different or lacking in this theme's URL generating logic, and I'm not able to pinpoint it. Help please!

TEMPLATEPATH issue

Hi, and thanks for the great theme! I've used it a couple of times now and have noticed that on localhost, TEMPLATEPATH seems to work fine, but when I push a site up to a live server it doesn't. Specifically the Modernizr script in line 98 of header.php no longer gets called. If I change that to

< script src="/_/js/modernizr-1.7.min.js">< / script>

it works on both localhost and the live server. Do you know why this is, and/or if it's an error? Thanks!!

Float issue on page.php

I've tried to make 2 floats, using the page.php using the following code:

page-wrap{

   width:1024px;
   margin:auto;

}
![Captura de Tela 2013-03-25 a s 12 25 05](https://f.cloud.github.com/assets/94072/298551/4b1849f6-9560-11e2-94d4-1af39809157e.png

respond{

width:500px;
float:left;
padding-right:25px;
background:blue;

}

sidebar{

width:250px;
background:red;
    float:right;

}

But the sidebar does not float. Maybe is a missing div before the sidebar or something that I cant find.

framework

how about a framework that can be updated so i can make child themes?

JQuery with functions.php doesn't always work

I've used multiple sliders and JQuery plugins that don't work unless JQuery is loaded in the < head >. Is this something I should be doing differently or is it not meant to work this way?

Using Wordpress Core's jQuery copy gives an error

Hi! First of all thanks for this useful Wordpress theme :)

Wordpress 3.3 comes with jQuery 1.7.1. I've tried to enqueue this file instead the one placed in our theme's /js/ folder, and I got this error:


My load code is as follows (I've just removed the lines that dequeue WP jQuery and register our copy)

// Load jQuery
if ( !function_exists(core_mods) ) {
function core_mods() {
if ( !is_admin() ) {
wp_enqueue_script('jquery');
}
}
core_mods();
}

Anyone could solve this problem?

Processing stylesheet through LESS

I had a problem on my site when I processed HTML5 Reset WP Theme's style.css through LESS. Actually, not sure that's true, as LESS didn't show up any errors in processing. But the result was that my site reverted to a barebones look, ignoring all the styles I had added, yet which remained intact.

The style.css file compiled by LESS had the first list of selectors (html, body, etc.) all output on single lines. My workaround was to remove all the reset styles to a separate file – reset.css – and use @import, so that LESS didn't process any of these styles.

It works now, but I've no idea why...

I also mentioned this in a post on Google+.

HTML5 Reset Theme questions

I just began maintaining a website built with the HTML 5 Reset Theme. I'm having some trouble understanding how it's built. I'm seeing multiple listings of the same pages in the "Pages" directory. I'm trying to change some menu settings, but if I try and do it within WP, I'm losing some information.

If anyone has some insights, I'd love to hear them.

Typo error in footer.php

At first I will profit of creating a new issue to say thanks to the great work of the HTML5 'normal', and WordPress Version.
Now; you got an error in footer.php: it should probably be a "class" and not a "clas" ;)

-webkit-appearance: none

I'm just wondering if '-webkit-appearence' for inputs should be set to 'none'. I'm still getting a rounded-corners search box by default in Safari on the example page that is linked to from the project's homepage. I thought you could just set a border on it and that would remove the default webkit appearance, but at least when I tried that in Safari's web inspector just now, it did not work. Same for buttons except setting a border on a button does seem to remove the default styling.

This theme need some fixes if you use 'WP_DEBUG', true

Hey Tim!
First of all thank you very much for your theme, it's awesome! i like htlp5reset, i saw searching all over the internet form something like this, and this is only one REALLY stripped theme! And i love it.

But could you please make a new version build and release and fix all issues. For example if you turn on debug more, then you'll get broken search.

http://192.168.1.34/%3Cbr%20/%3E%3Cb%3ENotice%3C/b%3E:%20%20get_bloginfo%20was%20called%20with%20an%20argument%20that%20is%20%3Cstrong%3Edeprecated%3C/strong%3E%20since%20version%202.2!%20The%20%3Ccode%3Esiteurl%3C/code%3E%20option%20is%20deprecated%20for%20the%20family%20of%20%3Ccode%3Ebloginfo%3C/code%3E%20functions.%20Use%20the%20%3Ccode%3Eurl%3C/code%3E%20option%20instead.%20in%20%3Cb%3E/Applications/MAMP/htdocs/project/wp-includes/functions.php%3C/b%3E%20on%20line%20%3Cb%3E3466%3C/b%3E%3Cbr%20/%3Ehttp:/192.168.1.34?s=query

And you got few other errors, but it's easy to fix them manually like you post in here:
1f663b2#comments

Thank you.

Widgets Disabled On Purpose?

I'm new to GitHub so I am not sure if this is what I'm supposed to do. I do want to help however, if anyone is interested.

I found on line 117 of functions.php, the code checks to see if the function register_sidebar does NOT exist. If it doesn't, then it goes and tries to register a sidebar. Of course this evaluates to false and you end up having a theme that does not support widgets. I was trying to edit the file but it said something about forking and I'm not ready to be forked at such a young age.

Perhaps someone might want to remove that "!" in front of the if ( !function_exists('register_sidebar')) { blah blah blah }

404 for reset.css

reset.css is still included on line 67 in header.php but the file doesn't exist.

Unwanted characters appearing in page

Hi

I am running the html5 wordpress reset and 'Shell cr57 GIF89a;' appears at the end of each page.

If I change my theme these characters dissapear. Has anyone experienced anything similar?

Template/Stylesheet Paths

TEMPLATEPATH and STYLESHEETPATH constants appear to be deprecated. Issue # 10 addressed such a site information instance, but other template part instances such as including meta.php and nav.php should be reviewed. Here is the relevant passages of the Wordpress Codex Theme Review:

Including Files

If incorporated into the Theme, custom template files are required to be called using get_template_part() or locate_template()

Site Information

If incorporated into the Theme, site information is required to be called using the correct template tag:

  • Template/Stylesheet Path:
    • Themes are required to use get_template_directory() rather than TEMPLATEPATH to return the template path.
    • Themes are required to use get_stylesheet_directory() rather than STYLESHEETPATH to return the stylesheet path.

Possible Javascript Issues

I haven't been able to track down the source of my problems, but I'm assuming it's javascript related.

I've been trying to get multiple image galleries working at http://timdonaldson.com/blogtest/photography/ but I'm not having any luck.

If I switch the site's theme back to the default twentytwelve theme, the slideshows show up fine.

If I use your default reset theme the galleries don't load, so I've been trying to compare twentytwelve with html5 reset, but I can't seem to track down the cause of the issues.

This is the gallery I'm currently trying to work with: http://wordpress.org/extend/plugins/slideshow-gallery/

Any ideas?

Doesnt work

I downloaded the zip files not for the wordpress theme, uploaded them to my server and it comes out with no format whatsoever.

Incompatibility with numerous jQuery plugins

Greetings, I'm trying to set up a jQuery slider on a Wordpress install. I've tried numerous plugins, and not a one of them worked.

I've tried every fix I can find anywhere, and nothing seems to help. The only common denominator is HTML5 Reset. I've used many of these plugins with other themes, and have never run into this problem.

Right now I have UnPointZero content Slider Version 2.1.6.2 running on WP 3.2.1, on Apache w/ PHP5. I'm afraid I don't know any more about the server than that — I don't have access.

I did try fixing the link to the google apl js, and tried linked also to http://code.jquery.com/jquery-1.6.2.min.js to no avail.

It seems there are a lot of issues with HTML5 Reset & js/jquery stuff, not just me but others as well. If you can advise a fix I would greatly appreciate it — I'll have more jquery to add later and would rather not have to start the whole build over again on a different theme.

Thanks, —Paula

Page Load Flash

If I upgrade to 1.6.3, firefox renders fine but still remains in webkit slightly.

// Load jQuery
    if ( !function_exists('core_mods') ) {
        function core_mods() {
            if ( !is_admin() ) {
                wp_deregister_script('jquery');
                wp_register_script('jquery', ("https://ajax.googleapis.com/ajax/libs/jquery/1.6.3/jquery.min.js"), false);
                wp_enqueue_script('jquery');
            }
        }
        core_mods();
    } 

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.