Viewing 3 replies - 1 through 3 (of 3 total)
  • Plugin Author Denis Yanchevskiy

    (@denisco)

    DCO Comment Attachment uses the comment_form_submit_field filter to display the attachment field, but your theme don’t use it.

    You can fix it by replacing
    <p><input name="submit" class="button" type="submit" id="submit" tabindex="5" value="{{ __('Submit Comment', 'g5_helium')|e }}"></p>
    with

    {% filter apply_filters( 'comment_form_submit_field') %}
    	<p><input name="submit" class="button" type="submit" id="submit" tabindex="5" value="{{ __('Submit Comment', 'g5_helium')|e }}"></p>
    {% endfilter %}
    

    in views/partials/comments.html.twig file at line 86.

    My result.

    Thread Starter usman2407

    (@usman2407)

    can we use this in additional css or kindly recomend the code for additional css

    Thread Starter usman2407

    (@usman2407)

    this solution also worked. great. you are awsome

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘DCO Comment Attachment not showing in comments area of my website’ is closed to new replies.