e107inc / e107

e107 Bootstrap CMS (Content Management System) v2 with PHP, MySQL, HTML5, jQuery and Twitter Bootstrap. Issue Discussion Room: https://gitter.im/e107inc/e107
https://e107.org
GNU General Public License v3.0
322 stars 214 forks source link

Missing Asterix after Extended User field introduced #3676

Open wrxxy opened 5 years ago

wrxxy commented 5 years ago

Ok when signing up to website with mandatory fields the asterix is shown as pic below, image

but when the Extended User fields have been modified after a user has signed up the asterix are not shown as the pic below shows image

Just wondering if this issue could be address please thx.....

wrxxy commented 5 years ago

Hi Cameron just letting you know that this issue is still current.

Moc commented 5 years ago

@wrxxy What's the status on this with the latest files?

wrxxy commented 5 years ago

@Moc just checked and this issue is still current , on sign up its fine but when your updating your user settings it doesn't show asterix's as per title...

Moc commented 5 years ago

Does your theme use a custom usersettings_template.php? If yes, look for {FIELDNAME} and make sure to add {REQUIRED} if it's not there: {FIELDNAME} {REQUIRED}

Moc commented 5 years ago

@wrxxy Any update on this? :)

Moc commented 4 years ago

@CaMer0n

As discussed, missing CSS class for .required

CaMer0n commented 4 years ago

@Moc Closing. But please re-open if someone can confirm the issue still exists.

Jimmi08 commented 1 year ago

Just note for needed css

 span.required:after {
     content: "*";
     color: red;
     font-size: 24px;
     margin-left: 4px;
 }

After apply there is asterisk 2x with force update $text .= "<div class='fborder' style='text-align:center'><br />" . str_replace("*", "<span class='required'>*</span>", LAN_USET_9) . "<br />" . LAN_USET_10 . "<br /><br /></div>";

Jimmi08 commented 9 months ago

Still needed theme fix, I am glad that I wrote it here :)