Go Back   vb.org Archive > Community Discussions > Modification Requests/Questions (Unpaid)
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools Display Modes
  #1  
Old 08-11-2015, 05:14 PM
akz645 akz645 is offline
 
Join Date: Jul 2015
Posts: 183
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default How do I check this box as default? (PHP Help) [Completed]

1)
Template: modifyprofile
PHP 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" checked="checked">Yes</option>
<
option value="0"></option>
</
select>
<
input type="hidden" name="userfield[field7_set]" value="1" />
                    </
li>
                </
ul>
            </
div
Note: I'm not sure if the ul class is even correct. Profile field type: Multiple-Selection Checkbox -> I guessed the ul class for that to be checkradio group.
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
Reply With Quote
  #2  
Old 08-11-2015, 11:27 PM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Try checked="checked" instead of selected.
Reply With Quote
  #3  
Old 08-11-2015, 11:45 PM
akz645 akz645 is offline
 
Join Date: Jul 2015
Posts: 183
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zachery View Post
Try checked="checked" instead of selected.
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.
Reply With Quote
  #4  
Old 08-12-2015, 09:55 AM
Zachery's Avatar
Zachery Zachery is offline
 
Join Date: Jul 2002
Location: Ontario, Canada
Posts: 11,440
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

<a href="http://www.w3.org/wiki/HTML/Elements/input/checkbox" target="_blank">http://www.w3.org/wiki/HTML/Elements/input/checkbox</a>
Reply With Quote
  #5  
Old 08-12-2015, 11:59 AM
akz645 akz645 is offline
 
Join Date: Jul 2015
Posts: 183
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zachery View Post
Unfortunately just sending me that link doesn't help.
I've tried doing that, but to no avail.
Reply With Quote
  #6  
Old 08-12-2015, 12:09 PM
Seven Skins's Avatar
Seven Skins Seven Skins is offline
 
Join Date: Sep 2008
Location: London, UK
Posts: 1,481
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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>
Reply With Quote
  #7  
Old 08-29-2015, 11:53 AM
akz645 akz645 is offline
 
Join Date: Jul 2015
Posts: 183
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

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
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 02:18 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04164 seconds
  • Memory Usage 2,238KB
  • Queries Executed 13 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (1)ad_showthread_firstpost
  • (1)ad_showthread_firstpost_sig
  • (1)ad_showthread_firstpost_start
  • (2)bbcode_html
  • (1)bbcode_php
  • (2)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)navbar
  • (3)navbar_link
  • (120)option
  • (7)post_thanks_box
  • (7)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (7)post_thanks_postbit_info
  • (7)postbit
  • (7)postbit_onlinestatus
  • (7)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete