Jump to content
This topic contains 20 posts. A summary containing the most significant posts is available

Featured Replies

Posted

I want to put a warning message on the registration page, Is there a way in the script that enables us to do that?

Screenshot_20250213_122649_com_transsion_phoenix_MainActivity.jpg

Screenshot_20250213_123013_com_transsion_phoenix_MainActivity.jpg

  • Community Expert

There isnt at present. What is it you are looking to add though? Is it perhaps something you can tag onto a language string?

  • Author

I would like to put a warning message warning not to use temporary mail

There used to be a free plugin which did this, are you using v5? If that's the case I don't know if there's anything out there yet that does this.

It's something I do myself.

-Edit

Sorry, I'll find the link to the plugin I use, I see you are using v4. I'm currently on my mobile, but I'll find it.

Edited by AintNobody
Missed something

The plugin you are looking for is:

Message on Signup Form
By Edward Shephard

Unfortunately, I don't remember who Edward is. I hope someone can help you track it down.

You can also do this manually by changing the relevant template and adding the text. Although manual edits aren't recommended, but it's an option should there be no third party stuff that do that.

  • Author
 

I see you are using v4. I'm currently on my mobile, but I'll find it.

I use v5

 

You can also do this manually by changing the relevant template and adding the text. Although manual edits aren't recommended, but it's an option should there be no third party stuff that do that.

Unfortunately I don't have the software experience to do this

  • Author
 

Message on Signup Form

This is it, it would be great if someone could update it.

message-admin.png.8f53b835156f7347c08a42e63fb1ee61.png

signup-i.png.8b881a3e676ed04d9fbbaa19cb2553fd.png

signup-w.png.ec99c2670f26e901637f9d9adf22d323.png

Edited by EliasM

This can be done with CSS. Ugly hack but does the job. Bear in mind I tested this only on the non-popup registration page.

Screenshot 2025-02-13 193957.png

To show message over form:

div.cRegister_noSocial > div:first-child::after {
  content: "Test message at the top";
  background-color: red;
  color: white;
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

To show message over the email field:

div.cRegister_noSocial li#form_email_address::before {
  content: "Test message over email field";
  background-color: red;
  color: white;
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

Edited by Eleeist

  • Author
 

This can be done with CSS. Ugly hack but does the job. Bear in mind I tested this only on the non-popup registration page.

Screenshot 2025-02-13 193957.png

To show message over form:

div.cRegister_noSocial > div:first-child::after {
  content: "Test message at the top";
  background-color: red;
  color: white;
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

To show message over the email field:

div.cRegister_noSocial li#form_email_address::before {
  content: "Test message over email field";
  background-color: red;
  color: white;
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

This trick would be great but it doesn't work for me.

  • Community Expert

Depending on what you need to put there. I used the ACP language translation to place this info on the registration page. It’s not as tidy and neat as how I wanted it to display, but it’s quick and it works.

Screenshot 2025-02-13 at 11.35.58 pm.jpg

Similar here

Screenshot 2025-02-14 at 5.18.08 PM.png

Screenshot 2025-02-14 at 5.20.43 PM.png

It would be nice to have the built-in ability to add a message. We block Yahoo email usage because it is a coin flip if Yahoo blocks our domain. Having a clear message about that as well as temporary emails would be great.

  • Community Expert
 

Similar here

Screenshot 2025-02-14 at 5.18.08 PM.png

Screenshot 2025-02-14 at 5.20.43 PM.png

Hi, is the language "username_desc" a default IPS key? I can't find that language key in my IPS v5.

Screenshot 2025-02-20 at 10.48.01 pm.jpg

  • Community Expert

OK. I figured it out. Now I know I can add a description key, "desc," to any existing language key by using the ACP language option "Add Phrase."

It now looks much better than how I had it before.

Screenshot 2025-02-20 at 11.30.16 pm.jpg

Add key (username_desc) or (email_address_desc)

Screenshot 2025-02-20 at 11.31.23 pm.jpg

Screenshot 2025-02-20 at 11.39.41 pm.jpg

Then, edit the language translation.

Screenshot 2025-02-20 at 11.32.12 pm.jpg

 

OK. I figured it out. Now I know I can add a description key, "desc," to any existing language key by using the ACP language option "Add Phrase."

Glad you figured it out. I'd forgotten how I got there. Does work nicely, though.

  • Author
 

OK. I figured it out. Now I know I can add a description key, "desc," to any existing language key by using the ACP language option "Add Phrase."

It now looks much better than how I had it before.

Screenshot 2025-02-20 at 11.30.16 pm.jpg

Add key (username_desc) or (email_address_desc)

Screenshot 2025-02-20 at 11.31.23 pm.jpg

Screenshot 2025-02-20 at 11.39.41 pm.jpg

Then, edit the language translation.

Screenshot 2025-02-20 at 11.32.12 pm.jpg

This is a good solution, but it is still not well visible, as most users do not care about the words that are in these places, especially if they are using other languages.

 

This can be done with CSS. Ugly hack but does the job. Bear in mind I tested this only on the non-popup registration page.

Screenshot 2025-02-13 193957.png

To show message over form:

div.cRegister_noSocial > div:first-child::after {
  content: "Test message at the top";
  background-color: red;
  color: white;
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

To show message over the email field:

div.cRegister_noSocial li#form_email_address::before {
  content: "Test message over email field";
  background-color: red;
  color: white;
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

This is the best solution currently, but it does not work for me, it will be a great help if someone can implement it

  • Community Expert

It doesn't matter if they care or not. All warnings are system set. In my case, they will care, look, and read the bright bold pink text properly when they try to use numbers in a username to create an account and realise the site won't allow them.

One solution is better than having none.

Edited by beats23

 

This is a good solution, but it is still not well visible, as most users do not care about the words that are in these places, especially if they are using other languages.

This is the best solution currently, but it does not work for me, it will be a great help if someone can implement it

Try this CSS. This should work both in popup and standalone registration form, not sure about social logins as I'm not using them and have no ability to test.

form.ipsForm--register-popup > div:nth-of-type(1)::before {
  content: "Test message at the top";
  background-color: red;
  color: white;
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

form.ipsForm--register-popup li#form_email_address::before {
  content: "Test message over email field";
  background-color: red;
  color: white;
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}
  • Author
 

Try this CSS. This should work both in popup and standalone registration form, not sure about social logins as I'm not using them and have no ability to test.

form.ipsForm--register-popup > div:nth-of-type(1)::before {
  content: "Test message at the top";
  background-color: red;
  color: white;
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

form.ipsForm--register-popup li#form_email_address::before {
  content: "Test message over email field";
  background-color: red;
  color: white;
  display: block;
  width: 100%;
  padding: 10px;
  margin-top: 10px;
}

Thank you very much, this is the best way❤️

Recently Browsing 0

  • No registered users viewing this page.