Title: Dan's Replies | WordPress.org

---

# Dan

  [  ](https://wordpress.org/support/users/heritz/)

 *   [Profile](https://wordpress.org/support/users/heritz/)
 *   [Topics Started](https://wordpress.org/support/users/heritz/topics/)
 *   [Replies Created](https://wordpress.org/support/users/heritz/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/heritz/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/heritz/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/heritz/engagements/)
 *   [Favorites](https://wordpress.org/support/users/heritz/favorites/)

 Search replies:

## Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Custom fields for pages.](https://wordpress.org/support/topic/custom-fields-for-pages/)
 *  [Dan](https://wordpress.org/support/users/heritz/)
 * (@heritz)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/custom-fields-for-pages/#post-2540310)
 * Below your post, in your WP visual editor, you have a custom fields form where
   you can specify metadata associated to that post. Then, at your template files,
   you can call that metadata using get_post_meta().
 * `<?php echo get_post_meta( get_the_ID(), 'original_author', true); ?>`
 * This will display the **original_author** metadata specified on your post custom
   fields.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Created a theme and can't get it to work now.](https://wordpress.org/support/topic/created-a-theme-and-cant-get-it-to-work-now/)
 *  [Dan](https://wordpress.org/support/users/heritz/)
 * (@heritz)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/created-a-theme-and-cant-get-it-to-work-now/#post-2539138)
 * Please verify that you have a style.css file in your theme folder:
 * wp-content/themes/eliteearnerstheme/style.css
 * If the file does not exist, WordPress wont be able to load the theme information,
   hence, it wont be activated. The file must exists within your theme folder and
   it must contain the theme information as stated here:
 * [http://codex.wordpress.org/Theme_Development#Theme_Stylesheet](http://codex.wordpress.org/Theme_Development#Theme_Stylesheet)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [feedburner email subscribe not enabled? URGENT](https://wordpress.org/support/topic/feedburner-email-subscribe-not-enabled-urgent/)
 *  [Dan](https://wordpress.org/support/users/heritz/)
 * (@heritz)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/feedburner-email-subscribe-not-enabled-urgent/#post-2435000)
 * I see it is working just fine. It opens a popup window when I submit the form.
 * > Email Subscription Request
   >  Thank you for your request. [peter@test.com](https://wordpress.org/support/users/heritz/replies/peter@test.com?output_format=md)…
   > will receive a verification message once you submit this form. FeedBurner activates
   > your subscription to “Future Pocket” once you respond to this verification 
   > message.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Alternative to get_bloginfo( ) for posts and pages](https://wordpress.org/support/topic/alternative-to-get_bloginfo-for-posts-and-pages/)
 *  [Dan](https://wordpress.org/support/users/heritz/)
 * (@heritz)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/alternative-to-get_bloginfo-for-posts-and-pages/#post-2539667)
 * To call the images from your template folder you should use bloginfo(‘template_directory’),
   like this:
 * `<img src="<?php echo bloginfo('template_directory'); ?>/images/pic.jpg" alt=""
   >`
 * This way, no matter where your template is hosted, it will always look for the
   images inside your theme folder.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How can I embed a .htm file into a post?](https://wordpress.org/support/topic/how-can-i-embed-a-htm-file-into-a-post/)
 *  [Dan](https://wordpress.org/support/users/heritz/)
 * (@heritz)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/how-can-i-embed-a-htm-file-into-a-post/#post-2539135)
 * I’d go for Scribd as mrwweb said. Otherwise just copy paste the HTML code of 
   your .htm file into your HTML view of you post. If it is too long, better use
   a different solution like Scribd for better paging and representation.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Nivo Slider for WordPress] [Plugin: Nivo Slider for WordPress] Stop Loading jQuery Incorrectly](https://wordpress.org/support/topic/plugin-nivo-slider-for-wordpress-stop-loading-jquery-incorrectly/)
 *  [Dan](https://wordpress.org/support/users/heritz/)
 * (@heritz)
 * [14 years, 3 months ago](https://wordpress.org/support/topic/plugin-nivo-slider-for-wordpress-stop-loading-jquery-incorrectly/#post-2214954)
 * Pain in the nuts. To fix it, open the nivoslider4wp-show.php file on your favorite
   text editor and completely remove the jquery call line, which looks something
   like this:
 * <script type=”text/javascript” src=”[https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js”></script&gt](https://ajax.googleapis.com/ajax/libs/jquery/1.5.1/jquery.min.js”></script&gt);
 * Save the file and reupload it via FTP. You can also edit this file from the plugin
   editor on WordPress. (Plugins -> Nivo -> edit).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [Email Confirmation Plugin?](https://wordpress.org/support/topic/email-confirmation-plugin/)
 *  [Dan](https://wordpress.org/support/users/heritz/)
 * (@heritz)
 * [19 years, 6 months ago](https://wordpress.org/support/topic/email-confirmation-plugin/#post-474397)
 * Yeah, check this out:
 * [http://www.skippy.net/blog/2004/04/27/plugin-comment-authorization/](http://www.skippy.net/blog/2004/04/27/plugin-comment-authorization/)
 * It has been tested on 2.0.4 and work like a charm. So it should work too on 2.0.5.
   Hope this helps!

Viewing 7 replies - 1 through 7 (of 7 total)