The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
How do I check this box as default? (PHP Help) [Completed]
1)
Template: modifyprofile PHP Code:
http://i.imgur.com/ebV531x.png The current default = Whatever is currently being used. So if I ticked the box and then went to see my post, then I came back to Edit Profile, the box would remain ticked. I'm not sure how to change that default. How do I make it so everytime someone visits 'Edit Profile' the checkbox will always have yes ticked, instead of it defaulted to whatever the user currently had saved it as? 2) Profile Field http://i.imgur.com/Gm0cTIn.png -> No, but show at registration makes it appear, as a checkbox. This is what appears at the bottom, when users are registering: However, the box is unticked. How do I have it ticked by default? This is the Mod (I made) that it will help: https://vborg.vbsupport.ru/showthread.php?p=2552624 |
#2
|
||||
|
||||
Try checked="checked" instead of selected.
|
#3
|
|||
|
|||
Didn't work...
Although yeah, if the ul class is checkradio group, I should have written checked instead of selected. Edit: Okay, it seems I'm mixing up the two templates and I've mixed myself up. Sorry for the confusion, for anybody who read earlier. Original post changed, so now my intention should be much more clear. |
#4
|
||||
|
||||
<a href="http://www.w3.org/wiki/HTML/Elements/input/checkbox" target="_blank">http://www.w3.org/wiki/HTML/Elements/input/checkbox</a>
|
#5
|
|||
|
|||
Quote:
I've tried doing that, but to no avail. |
#6
|
||||
|
||||
Have you tried radio buttons?
HTML Code:
<label><input type="radio" name="userfield[field7_set]" checked>Yes</label> <label><input type="radio" name="userfield[field7_set]">NO</label> Or May be this: HTML Code:
<div class="blockrow"> <ul class="checkradio group"> <li> <label for="repdisplay">{vb:rawphrase repdisplay}:</label> <select class="primary" name="userfield[field7]" id="cfield_7" tabindex="1"> <option value="1" selected="selected">Yes</option> <option value="0">No</option> </select> <input type="hidden" name="userfield[field7_set]" value="1" /> </li> </ul> </div> |
#7
|
|||
|
|||
Checkbox was more trouble than it's worth lol.
Anyway, I figured out a different method for doing what I wanted to do. https://vborg.vbsupport.ru/showpost....&postcount=154 I figured out how to do it for my Gender profile field, so it should be a similar process for my reputation. Regardless, thanks for the help I always appreciate those who reply back to me. As it's far better than nobody replying back |
Thread Tools | |
Display Modes | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|