Title: logen's Replies | WordPress.org

---

# logen

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LowerMedia Sticky.js Menus] Issue: All existing menus have become fixed headers](https://wordpress.org/support/topic/issue-all-existing-menus-have-become-fixed-headers/)
 *  Thread Starter [logen](https://wordpress.org/support/users/logen/)
 * (@logen)
 * [12 years, 4 months ago](https://wordpress.org/support/topic/issue-all-existing-menus-have-become-fixed-headers/#post-4438217)
 * Hi, I have actually deactivated the plugin on my site. Is there a way I can send
   you a pm? Let me know when you want to look at it, and I will activate that plugin
   temporarily.
 * Thanks for the response and happy new year in advance.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[MoneyPress : eBay Edition] [Plugin: MoneyPress : eBay Edition] Not tracking affiliates](https://wordpress.org/support/topic/plugin-moneypress-ebay-edition-not-tracking-affiliates/)
 *  [logen](https://wordpress.org/support/users/logen/)
 * (@logen)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-moneypress-ebay-edition-not-tracking-affiliates/#post-2483952)
 * I’m having this issue too. Please update the plugin to add the campaign/affiliate
   id to the url.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Show comments on homepage posts without showing comment form](https://wordpress.org/support/topic/show-comments-on-homepage-posts-without-showing-comment-form/)
 *  Thread Starter [logen](https://wordpress.org/support/users/logen/)
 * (@logen)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/show-comments-on-homepage-posts-without-showing-comment-form/#post-2900922)
 * Oh. Okay. So, in the future I should take reference of filters within the core?
 * Thanks again Alchymyth. I appreciate your help with this; especially because 
   I’m not that good at wordpress codex functions and have close to no knowledge
   on php.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Show comments on homepage posts without showing comment form](https://wordpress.org/support/topic/show-comments-on-homepage-posts-without-showing-comment-form/)
 *  Thread Starter [logen](https://wordpress.org/support/users/logen/)
 * (@logen)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/show-comments-on-homepage-posts-without-showing-comment-form/#post-2900861)
 * It works! Thanks alchymyth.
 * As for the limiting of comment length, I used:
 * `<?php comment_excerpt( $comment_ID ); ?>`
 * The codex for this doesn’t allow arguments to define the excerpt length, which
   defaults at 20 words. How can I adjust it to show 10 words? Through wp_list_comments?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Show comments on homepage posts without showing comment form](https://wordpress.org/support/topic/show-comments-on-homepage-posts-without-showing-comment-form/)
 *  Thread Starter [logen](https://wordpress.org/support/users/logen/)
 * (@logen)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/show-comments-on-homepage-posts-without-showing-comment-form/#post-2900826)
 * I think the portion that calls up post id needs an alternative.
 * It seems that a call up of post id within the loop, actually gets the post id
   of the latest post in the homepage. It doesn’t get the post id of individual 
   posts in the loop. Not sure how I can circumvent that.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Show comments on homepage posts without showing comment form](https://wordpress.org/support/topic/show-comments-on-homepage-posts-without-showing-comment-form/)
 *  Thread Starter [logen](https://wordpress.org/support/users/logen/)
 * (@logen)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/show-comments-on-homepage-posts-without-showing-comment-form/#post-2900815)
 * Thanks alchymyth. Here’s what happened.
 * > Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in /home/accountname/
   > public_html/dev/wp-content/themes/themeName/comments-box.php on line 27
 *     ```
       global $post;
       get_comments('number=3&post_id='.$post->ID');
       ```
   
 * I suppose this is because of the apostrophes? So I switched to the below to avoid
   a parsing error.
 *     ```
       global $post;
       get_comments("number=3&post_id='.$post->ID'");
       ```
   
 * It gives the same result as you would get from omitting your portion of the code
   on post ID. Is there an alternative solution that doesn’t use get_comments. I
   don’t think it is working on the homepage loop. Thanks again for your input alchymyth.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Show comments on homepage posts without showing comment form](https://wordpress.org/support/topic/show-comments-on-homepage-posts-without-showing-comment-form/)
 *  Thread Starter [logen](https://wordpress.org/support/users/logen/)
 * (@logen)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/show-comments-on-homepage-posts-without-showing-comment-form/#post-2900801)
 *     ```
       <?php
               $comments = get_comments('number=3'); // Limits the number of comments shown to 3
                    foreach ($comments as $comment) : ?>
       ```
   
 * I used this to limit comments to 3. It sorta works. The issue is that when there
   are 1 to 2 comments on the post, it retrieves another comment from another post.
   Is there something wrong with my code?
 * Update: It doesn’t work. I propagated my posts with more comments. Each post 
   is showing the same comments, when a comment exists on that post. Nothing shows
   on those that have no comments.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Show comments on homepage posts without showing comment form](https://wordpress.org/support/topic/show-comments-on-homepage-posts-without-showing-comment-form/)
 *  Thread Starter [logen](https://wordpress.org/support/users/logen/)
 * (@logen)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/show-comments-on-homepage-posts-without-showing-comment-form/#post-2900739)
 * Gosh, I think this could work. I have been going back and forth on the codex 
   regarding comments, but didn’t find information on comments template. I’m going
   to try it out and let you know if it works.
 * Thanks alchymyth.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[IndyPress] [Plugin: IndyPress] Not working for 3.4.1](https://wordpress.org/support/topic/plugin-indypress-not-working-for-341/)
 *  [logen](https://wordpress.org/support/users/logen/)
 * (@logen)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-indypress-not-working-for-341/#post-2880316)
 * Same here.
 * Warning: Invalid argument supplied for foreach() in /home/xxx/public_html/xxx/
   wp-content/plugins/indypress/indypress/classes/form_settings.php on line 13
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[BuddyPress Activity Plus] [Plugin: BuddyPress Activity Plus] Plugin not working](https://wordpress.org/support/topic/plugin-buddypress-activity-plus-plugin-not-working/)
 *  Thread Starter [logen](https://wordpress.org/support/users/logen/)
 * (@logen)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/plugin-buddypress-activity-plus-plugin-not-working/#post-2881195)
 * Okay, I managed to get it to work. It seems there may be some issues with the
   version of this plugin directly from WPMU’s site. The plugin within the wordpress
   repository works fine.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Random Letters & Numbers Are Appearing In My Posts & Theme Files](https://wordpress.org/support/topic/random-letters-numbers-are-appearing-in-my-posts-theme-files/)
 *  Thread Starter [logen](https://wordpress.org/support/users/logen/)
 * (@logen)
 * [13 years, 10 months ago](https://wordpress.org/support/topic/random-letters-numbers-are-appearing-in-my-posts-theme-files/#post-2875450)
 * I’m unable to do that as I’ve deleted those wordpress installations. And for 
   the last existing one, I’ve corrected the issue remotely, by avoiding the use
   of the theme editor and the post editor.
 * I’m looking for a solution, so that I can go back to using the post editor to
   post without having some of my words becoming like this: Somet%2es.

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