How to create customize registration form

Profile picture for user Chrysmille
Chrysmille
Hello, I want to create a registration form for the members to create an account to access the website. How to I do this? Thanks
Profile picture for user James Aparicio
James Aparicio

Hi Chrysmille,

Hi Chrysmille,

Here -> "admin/config/people/accounts"

You can configure all the fields and configure if they are displayed in the registration form.

Best regards

 

Profile picture for user Chrysmille
Chrysmille

Thank you for the reply..

Thank you for the reply.. another question, How can I create a customize page for a member profile?
Profile picture for user James Aparicio
James Aparicio

Hi Chrsymille,

Hi Chrsymille,

Inside the user module, you have the drupal default file user-profile.tpl.php.

If you copy it to your theme templates folder it will be usesed instead of the one inside the user module. Just remember to clear the cache for it to be found by Drupal.

 

Best regards

Profile picture for user Chrysmille
Chrysmille

Hello!

Thank you again for your reply. How can I apply email confirmation upon registration of the member account?
Profile picture for user Chrysmille
Chrysmille

Hello!

Thank you again for your reply. How can I apply email confirmation upon registration of the member account? and Is it possible to upload documents in the forum?
Profile picture for user James Aparicio
James Aparicio

Hi Chrysmille,

Hi Chrysmille,

To custumize email setting regarding new accounts, you can go to http://opignolms117_a.local/admin/config/people/accounts

By default it already sends the drupal default email.

Regarding the upload of files to in the forum, you can go to admin/structure/types/manage/forum/comment/fields and add a file field to the forum comments.

 

Best regards

Profile picture for user Chrysmille
Chrysmille

Hello James,

Hello James, I want to know how can I see the List of class in opigno?
Profile picture for user Chrysmille
Chrysmille

Hello James,

Hello James, I want to know how can I see the List of class(for example Biology Class, English Class)? I already created the class, categories and courses.
admin

The course catalogue displays

The course catalogue displays courses and classes that you are not part of. In the my courses, you see the courses and classes you are part of. For classes to displays, they need to have a course associated to them. If you want to views the full list of classes from an admin perspective, you go to the top black bar, click on content and filter by type(class) Best regards
Profile picture for user Chrysmille
Chrysmille

Thank you .. how about from a

Thank you .. how about from a member perspective. how can she know the classes available? (sorry for asking many questions.)
Profile picture for user James Aparicio
James Aparicio

Hi Chrysmille,

Hi Chrysmille,

As i explained previously, if the class and course are not private (they do not show up anywhere if it is private (only under my courses for users that are part of that course)) they will show inside the catalogue or the my courses depending if the user is part of the course or not. But for this to happen, the class must have at least 1 course inside it. If the class does not have any courses assigned to it, by default with opigno it will not show anywhere.

Best regards

Profile picture for user Chrysmille
Chrysmille

Hello, How can I change the

Hello, How can I change the range of the year in the Date, because I will use it for the Birthdate field.
Profile picture for user James Aparicio
James Aparicio

Hi Chrysmille,

Hi Chrysmille,

In the field settings, click on More settings and values, there you can specify the starting year and ending year.

Best regards

Profile picture for user Chrysmille
Chrysmille

Sorry, but I can't find the

Sorry, but I can't find the "More settings and values" in the field setting. ... and one more question, How can I put an icon in the menu in the default Opigno theme, because I added another menu item. Hope for your answers. thanks
axel

Hi,

Hi,

To add an icon in a menu item you should edit the menu and add an ID for this item (in "Menu item attributes" part).

Then in Administration -> Manage display settings -> CSS overrides, simply add some CSS to use the icon with the menu item ID (you can inspect the CSS code used for existing menu entries to add something similar).

Feel free to post on this forum in case of additional questions.

Best regards,

Profile picture for user James Aparicio
James Aparicio

For the field settings, you

For the field settings, you have to go to Structure -> Content type -> the content type the field is in -> manage fields. In this page you click edit on the date field you want to edit. You will find the "More settings and values here".

Best regards

Profile picture for user Chrysmille
Chrysmille

Thank you for all of your

Thank you for all of your answers.
Profile picture for user Chrysmille
Chrysmille

Hello,

Hello, I put and ID for the menu item and add css in the CSS overrides but it doesn't work, and I can't find similar css for the menu icons.
axel

Hi

Hi

If the id you defined is #your-custom-id then the CSS to add is:

#your-custom-id a.active, #your-custom-id a:hover {    background-image: url("/sites/default/files/your-icon-active.png");}#your-custom-id a {    background-image: url("/sites/default/files/your-icon-inactive.png");

Assuming that you placed the icons for active and inactive menu item in /sites/default/files folder and that they are names your-icon-active.png and your-icon-inactive.png

Best regards,

Profile picture for user Chrysmille
Chrysmille

Hello,

Hello, The background image doesn't appear but if it is background-color it will appear.