Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Realtyna

    (@realtyna)

    Hello,

    For showing new fields on property show page you need to override agent_info activity (profileshow.php layout) on your theme and customize it to show new field. Please check this KB article: https://support.realtyna.com/index.php?/Default/Knowledgebase/Article/View/549/

    Regards,
    Realtyna support team

    Thread Starter rmello526

    (@rmello526)

    Thanks. I had done that prior. I also cleared the cache, but the new fields are still not showing up. Doing some more digging …

    Plugin Author Realtyna

    (@realtyna)

    Hello,

    Use wpl_users::get_wpl_data($user_id) for getting all user raw data and then print it on your overrode tmpl.

    Regards,
    Realtyna Support Team

    Thread Starter rmello526

    (@rmello526)

    Thanks, I have the raw user data and dumped the array values to inspect. Not sure why they are still not displaying through the agent_info activity “showprofile”.

    Thread Starter rmello526

    (@rmello526)

    This issue is not resolved.

    I have also purchased the PRO version.

    Here is what’s happening: When you create a new field in FLEX User, it is being assigned field_3000 in wp_wpl_dbst. I’ve tried using that variable name and also the variable name I called the field, using similar fields (e.g. first_name) and it still will not display the value.

    I’ve even done the following:

    $wpl_user_raw_data = wpl_users::get_wpl_data($user_id);
    var_dump($wpl_user_raw_data);

    and see the variable populated with a value, but I can’t seem to get the value to display.

    This is a fundamental requirement of customizing a user experience for agent_info and property_details.

    Please advise.

    Plugin Author Realtyna

    (@realtyna)

    Hello,

    You can use $wpl_user_raw_data['field_3000'] or $wpl_user['data']['field_3000'] for printing your data for now. In next update we will render all enabled fields for single page in profileshow layout and you can find it on rendered values.

    Regards,
    Realtyna support team

    Thread Starter rmello526

    (@rmello526)

    That worked. Thanks!

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘Text field added to flex user, but not displaying on agent page.’ is closed to new replies.