2013-06-13 5 views
1
 
Now, I am having comments section like this in node view page. 

    Comment 1 
    comment 11 
    comment 12 
    Comment 2 
    Comment 3 
    comment 31 
    comment 32 
    comment 33 

But, I would to show this with show/hide option for replied comments with replies count. like below 

    Comment 1 
    show/hide 2 replies 
    ------------------ 
    | comment 11  | 
    | comment 12  | 
    ------------------ 
    Comment 2 
    Comment 3 
    show/hide 3 replies 
    --------------- 
    | comment 31 | 
    | comment 32 | 
    | comment 33 | 
    --------------- 

Répondre

0

Vous pouvez accéder au nombre de commentaires dans votre modèle avec

<?php print $comment_count; ?> 

Et pour Show et Hide, ce qui est au sujet simple .hide() et() .Show fonctions jQuery?

Questions connexes