Hello,
I used below snippet to add a description to the registration form and popup but it’s not working.
<?php add_filter( 'hivepress/v1/forms/user_register', function( $form ) { $form['description'] = 'custom text here'; return $form; }, 1000 );
Hi,
Please note that the description is added to the registration form, not the login form. Try clicking on Register at the bottom, and if you have added this PHP snippet correctly, the description should appear at the top of the form.
This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.