zoukankan      html  css  js  c++  java
  • Joomla 3.x. How to edit registration page

    Adding registration form fields

    In order to add new fields to the registration form, database and files update is required. The following database changes are required:

    1. Access the database assigned to your site using PhpMyAdmin tool on your hosting Cpanel.

    2. Browse XXX_users table. XXX is your the database table prefix:

      Joomla-3.x.-How-to-edit-registration-page-5

    3. Click on the Structure button.

    4. Choose elements between which you would like to paste a new field.

    5. Specify columns number under Add section. Add chose database ID after which new item will be shown.

    6. Click on Go button:

      Joomla-3.x.-How-to-edit-registration-page-6

    7. Specify Name, Type and Length settings on the next screen.

    8. Save changes:

      Joomla-3.x.-How-to-edit-registration-page-7

    In order to make a new field appear on your site, modify the following files:

    1. Edit user.php file from the libraries/joomla/user folder. Find code for the field after which your new section should come:

      public $name = null;

      Add code for your new field just under the code above:

      public $field_lable_here= null;

      Where field_lable_here is your new field title.

    2. Modify users.xml file from administrator/components/com_users/models/forms directory.

      Find code for the field after which your new field will be shown:

      1
      2
      3
      4
      5
      6
      <field name="name" type="text"
              description="COM_USERS_USER_FIELD_NAME_DESC"
              label="COM_USERS_USER_FIELD_NAME_LABEL"
              required="true"
              size="30"
      />

      Add code for your field just under the code below:

      1
      2
      3
      4
      5
      6
      <field name="field_lable_here" type="text"
              description="Your description"
              label="field_lable_here"
              required="true"
              size="30"
      />

      Replace field_lable_here with your new field label. Change Your description text to your description.

    3. Edit registration.xml file from the components/com_users/models/forms folder on your server. Add code for your field under the code used for the field after which you would like to show your new field:

      1
      2
      3
      4
      5
      6
      <field name="field_lable_here" type="text"
              description="Your description"
              label="field_lable_here"
              required="true"
              size="30"
      />

    Upload the modified files on your server. Refresh your site to see the change.

  • 相关阅读:
    Python面试题目--汇总
    MySQL索引背后的数据结构及算法原理
    Python中的str与unicode处理方法
    消息队列 RabbitMQ
    python采用pika库使用rabbitmq总结,多篇笔记和示例
    SQL总结(一)基本查询
    【IT笔试面试题整理】判断一个树是否是另一个的子树
    【IT笔试面试题整理】有序数组生成最小高度二叉树
    【IT笔试面试题整理】给定二叉树,给每层生成一个链表
    【IT笔试面试题整理】位操作
  • 原文地址:https://www.cnblogs.com/hjxcode/p/5770677.html
Copyright © 2011-2022 走看看