Theme profile
-
Hello, I am trying to customize the profile page.
I have copied register-form.php to themes/my_theme/register-form.php.
I made a theme-my-login-custom.php file in content/plugins/theme-my-login-custom.php
In my theme-my-login-custom.php file I’ve added:
<?php function test(){ var_dump($_POST); } add_action('tml_request_profile', 'test');
I am getting an empty array for $_POST. I would like to be able to grab the post data but it’s not there.
- The topic ‘Theme profile’ is closed to new replies.