logen
Forum Replies Created
-
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.
I’m having this issue too. Please update the plugin to add the campaign/affiliate id to the url.
Forum: Themes and Templates
In reply to: Show comments on homepage posts without showing comment formOh. 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
In reply to: Show comments on homepage posts without showing comment formIt 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
In reply to: Show comments on homepage posts without showing comment formI 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
In reply to: Show comments on homepage posts without showing comment formThanks 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
In reply to: Show comments on homepage posts without showing comment form<?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
In reply to: Show comments on homepage posts without showing comment formGosh, 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
In reply to: [IndyPress] [Plugin: IndyPress] Not working for 3.4.1Same 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
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
In reply to: Random Letters & Numbers Are Appearing In My Posts & Theme FilesI’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.