• I want to add facebook comments above where the current disqus comments are.
    Disqus comments are below the post via a plugin, so I don’t know where i’d put the new facebook comment section code to put it up above there.

    (Ideally not attached to the post body so that it looks like a normal separate widget would)

Viewing 1 replies (of 1 total)
  • Theme Author ronangelo

    (@ronangelo)

    you could use the frontier_before_comments action hook.
    On a child-theme functions.php you could add something like this:

    add_action( 'frontier_before_comments', 'my_custom_fb_comments' );
    
    function my_custom_fb_comments() {
       // Your code goes here
    }

Viewing 1 replies (of 1 total)

The topic ‘Where to put comment code?’ is closed to new replies.