Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi luda,
    In your template’s function.php file, try to use this code:

    add_action('comment_form_before','my_tex_before_form');
    public function  my_tex_before_form(){
    echo 'Text';
    }
    Thread Starter Iuda

    (@iuda)

    well, not working. i put this in my theme functions.php ant give a 500 error

    Plugin Author gVectors Team

    (@gvectors-team)

    Please use this one:

    add_action('comment_form_before','my_text_before_form');
    function  my_text_before_form(){
    echo 'Text';
    }
    Thread Starter Iuda

    (@iuda)

    tnx, works like a charm

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘add info text’ is closed to new replies.