• Nice piece of software. I would have given 5 stars if you would change html5-responsive-faq/include/hrf-style.php line 91 from
    add_action( 'wp_footer','fn_hrf_styles' );
    to
    add_action( 'wp_head','fn_hrf_styles' );

    The reason because most WordPress themes I am using put wp_footer inside <body></body> tag, thus your plugin CSS do not pass W3C validator. My edit above will move your CSS to <head></head>, thus more desirable. Thanks!

  • The topic ‘Move to wp_head, not wp_footer’ is closed to new replies.