Title: davoscript's Replies - page 3 | WordPress.org

---

# davoscript

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

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

 Search replies:

## Forum Replies Created

Viewing 6 replies - 31 through 36 (of 36 total)

[←](https://wordpress.org/support/users/davoscript/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/davoscript/replies/?output_format=md) [2](https://wordpress.org/support/users/davoscript/replies/page/2/?output_format=md)
3

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [query_posts in loop.php overrides the archive page](https://wordpress.org/support/topic/query_posts-in-loopphp-overrides-the-archive-page/)
 *  [davoscript](https://wordpress.org/support/users/davoscript/)
 * (@davoscript)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/query_posts-in-loopphp-overrides-the-archive-page/#post-1579382)
 * Glad to read that!
 * Regards!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How do I display custom fields in the Twentyten theme?](https://wordpress.org/support/topic/how-do-i-display-custom-fields-in-the-twentyten-theme/)
 *  [davoscript](https://wordpress.org/support/users/davoscript/)
 * (@davoscript)
 * [15 years, 9 months ago](https://wordpress.org/support/topic/how-do-i-display-custom-fields-in-the-twentyten-theme/#post-1525450)
 * Hi there!
 * To display the custom fields you have to use this function inside the loop:
 * `<?php the_meta(); ?>`
 * For more information about it, check this link: [http://codex.wordpress.org/Template_Tags/the_meta](http://codex.wordpress.org/Template_Tags/the_meta)
 * Regards greatdanemaniac!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [query_posts in loop.php overrides the archive page](https://wordpress.org/support/topic/query_posts-in-loopphp-overrides-the-archive-page/)
 *  [davoscript](https://wordpress.org/support/users/davoscript/)
 * (@davoscript)
 * [15 years, 10 months ago](https://wordpress.org/support/topic/query_posts-in-loopphp-overrides-the-archive-page/#post-1579297)
 * Hi greatdanemaniac, as t3los_ suggest, you should determinate where you want 
   to show that. I see you say you want your “custom post types” and “original posts”
   in the “HOMEPAGE”.. so try something like this:
 *     ```
       <?php if ( is_home() ) : ?>
   
       <?php query_posts( array( 'post_type' => array('essay', 'tutorial', 'post', 'gamereview') ) ); ?>
   
       <?php endif; ?>
   
       <?php THE LOOP... ?>
       ```
   
 * This way, the query_posts function will only affect the loop when in the front
   page.
 * Best Regards,
    David
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: LeagueManager] Widget Problem](https://wordpress.org/support/topic/plugin-leaguemanager-widget-problem/)
 *  [davoscript](https://wordpress.org/support/users/davoscript/)
 * (@davoscript)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/plugin-leaguemanager-widget-problem/#post-1142158)
 * This issue has a really hard-find solution, at least it was for me.
 * Ok this is mostly due to another widget conflicting, so try deactivating each
   widget that you suspect, in my case it was a widget that i was developing so 
   ill have to check what’s wrong there =P I’ll post more info when i find the error
   so other can have a better idea of the posible problem.
 * FYI: I read that wp-events widget can cause this issue.
 * Regards!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Plugin: LeagueManager] Widget Problem](https://wordpress.org/support/topic/plugin-leaguemanager-widget-problem/)
 *  [davoscript](https://wordpress.org/support/users/davoscript/)
 * (@davoscript)
 * [15 years, 11 months ago](https://wordpress.org/support/topic/plugin-leaguemanager-widget-problem/#post-1142157)
 * Any news about this?
 * Regards,
    David.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Mootools](https://wordpress.org/support/topic/mootools/)
 *  [davoscript](https://wordpress.org/support/users/davoscript/)
 * (@davoscript)
 * [16 years, 1 month ago](https://wordpress.org/support/topic/mootools/#post-1080948)
 * Well, actually you can add your JS files anywhere inside your theme, i recomend
   to do this:
 * > /my_theme/js/scripts.js
 * You should always use the WordPress native [“wp_enqueue_script”](http://codex.wordpress.org/Function_Reference/wp_enqueue_script)
   function instead of hardcode, actually in the examples above, we see how **<?
   php bloginfo(‘stylesheet_directory’); ?>** is beeing used, wich is wrong since
   you could be using a “child-theme”.
 * David.

Viewing 6 replies - 31 through 36 (of 36 total)

[←](https://wordpress.org/support/users/davoscript/replies/page/2/?output_format=md)
[1](https://wordpress.org/support/users/davoscript/replies/?output_format=md) [2](https://wordpress.org/support/users/davoscript/replies/page/2/?output_format=md)
3