How to show custom fields in the reviews?
-
Hi!
I added this code to the functions.php file:
/* ADD CUSTOM FIELD TO SITE REVIEWS */ add_filter('site-reviews/config/forms/submission-form', function ($config) { $config['favourite_line'] = [ 'label' => __('Yksi lempilauseistasi kirjassa (vaihtoehtoinen)', 'divi'), 'placeholder' => __('', 'divi'), 'required' => false, 'type' => 'textarea', ]; return $config; });
It sure adds a new custom field to the form, but how do i get it to show on reviews and on the admin side in the single review?
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘How to show custom fields in the reviews?’ is closed to new replies.