Site logo

Archived topic

comment form

9 replies · Started by Srini on February 8, 2023

Viewing posts 1–10 of 10

Hi
Can you guide me to change the order of form fields and remove require to email?

Regards
Srini

Hi Fernando,

please check the link below.

Regards
Srinivas

Can you try adding this through Appearance > Customize > Additional CSS?:

form#commentform {
    display: flex;
    flex-direction: column;
}

p.comment-form-comment {
    order: -4;
}

input#author {
    order: -3;
}

input#email {
    order: -2;
}

input#phone {
    order: -1;
}

Thanks, it worked.
one more issue, phone number is not storing in the data. can you suggest?

For reference, how exactly did you add that field?

Hi there,

unfortunately we cannot assist with that issue, the Theme has no control over that, and we can't debug that kind of custom development problem.

Hi David,

Let us leave that external plugin, can you guide me to add phone number field in default comment form in Generatepress theme?

Regards
Srini

The Theme has nothing to do with it.
The Comments form and how that data is stored is a WordPress function.

the tutorial you linked to is still valid, but you need a developer to implement that for you.
Alternatively use a plugin in the WordPress repository eg.

https://wordpress.org/plugins/wp-comment-fields/

This archived topic is closed to new replies.