Welcome to the Question2Answer Q&A. There's also a demo if you just want to try it out.
+1 vote
664 views
in Q2A Core by
Hi,

Theme: Pixel N Grain Dark V1.1

I would like to know if it's possible to see a profil user only for register.

Thank you
Claude
Q2A version: 1.6.3

1 Answer

0 votes
by

Yes this is possible. Either using a custom plugin or a quick change to the qa-page-user.php file inside qa-include folder and here is the change:

Below line 56 (and above the switch case block) add following code:

if(qa_get_logged_in_userid()===null) { 
    $qa_content=include QA_INCLUDE_DIR.'qa-page-user-not-logged-in.php';
    break;
}
 
Where qa-page-user-not-logged-in.php is your custom template file that you need to create. However this is just a quick n dirty way and you should try to convert this into a plugin by overriding layers and modules.
by
Thanks dkd903,

i'm not expert to do this, i will waiting for another solution. Thank you for you answer.

Claude
by
It very simple. I can help you if you want.
...