0

目前我的第一页注册显示这些字段:

First Name
Last Name
Username
Email
Password
Verify Password

单击“下一步”后,名字和姓氏字段将自动填写上一页中填写的内容。我想显示上一页的电子邮件,但我不确定要使用什么“字段代码”。我也在使用 JoomlaXi 的 JomSocial Profile Types (JSPT),但我不太确定这在这种情况下是否重要。

在后端,我会去组件 > JomSocial > 自定义配置文件 > “新字段”

Name: Email
Type: Email
Groups: User Contact Info
Field Code: (no idea what to put here to display the email already provided)
Registration: Yes
Visible: Personal
Tooltip: N/A
Read Only: Yes
Published: Yes
Required: Yes

     非常感谢您,我确实尽力搜索并寻找答案,所以如果这已经在其他地方涵盖,我提前道歉,但经过 45 分钟的查找后,我决定在这里试试运气。再次感谢,非常感谢任何帮助

4

1 回答 1

2

我不确定您是否可以实现它,您可以尝试在以下位置创建自定义字段:

components/com_community/libraries/fields/

在那里你将创建“yourfield.php”并在

getFieldData() 

可以拉取实际电子邮件值的方法;

否则,您可能会编辑

components/com_community/templates/your_template/register.profile.php

并在那里对其进行硬编码。

于 2013-04-16T07:19:32.543 回答