I have been trying to work out the switch tag in the comment entires and for some strange reason its not working for me. I have no idea what am I missing on. Its just not picking up the alternate class.

Any help will be much appreciated.

Here's the code for the comment div I have built

            <div id="comments">
                        <h6>Comments</h6>


                        {exp:comment:entries weblog="news"}
                            <div class="comment-content {switch="odd|even"}">
                                <dl>
                                    <dt><span class="posted-by">{name}</span>
                                    <span class="comment-date">{comment_date format="%F %d, %Y"}</span>
                                    </dt>
                                    <dd>{comment}</dd>
                                </dl>
                            </div>
                        {/exp:comment:entries}




                    {exp:comment:form}
                        <h6>Leave your comment</h6>
                        {if logged_out}
                            <label for="name">Name: </label> <br><input type="text" name="name" value="{name}" class="type1" /><br /> 

                        {/if}

                        <label for="comment">Comment: </label>

                        <textarea class="comment_input" cols="30" rows="10" name="comment">{comment}</textarea>


                        {if captcha}
                            <label for="captcha">Please enter the word you see in the image below:</label><br /> 
                            <p>{captcha}<br />
                            <input type="text" name="captcha" value="{captcha_word}" maxlength="20"  class="type1" /></p>
                        {/if}


                        <input class="btn_input" type="submit" value="SUBMIT" name="submit">



                    {/exp:comment:form}
                </div>
link|improve this question
Fixed it. Silly me.. The comment entires needs to sit out of the weblog entries. And yea I know half of you wont be interested in it coz its EE1.6 :) .. – Neha Sep 6 '11 at 14:24
Good workaround for putting comments into entry tags: put the comments in a separate template and embed it. That way, you can keep them inside the weblog entries tag and pass them the entry info: {embed="_partials/comment" entry_id="{entry_id}"}. – Doug Avery Oct 8 '11 at 8:47
feedback

closed as too localized by Robert Harvey Sep 19 '11 at 20:14

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.