Forum Replies Created
-
AuthorPosts
-
ZeOneNZeOnlyMember
ahhh I did it via ftp and it worked. I also just had to change
<script>
$(function() {
$( “#datepicker” ).datepicker();
});
</script>
<script>
jQuery(function() {
jQuery( “#datepicker” ).datepicker();
});
</script>
Sweet!!!!
Is there anyway I can modify like variation three to be an input field like this?
ZeOneNZeOnlyMemberanyone? I added the id to that code in the plugin and it’s not showing up
ZeOneNZeOnlyMember[wp_eStore_fancy1 id=25]
this is the shortcode on the page I’m using to test
[http://camprentalgear.com/testing-date-picker/]
ZeOneNZeOnlyMemberI’m not using the custom input for anything else. I just need it to populate that jquery datepicker on that field and it will input the start date as if someone entered it in so it will be on the receipt/order
ZeOneNZeOnlyMembernot using a shortcode, but I can apply the datepicker if I can make an ID on that input from above.
ZeOneNZeOnlyMemberSo in eStore_button_display_helper.php
if($ret_product->custom_input == ‘1’)
{
if(!empty($ret_product->custom_input_label))
$var_output .= ‘<span class=”eStore_custom_input_name”>’.$ret_product->custom_input_label.’: </span><input id=”datepicker” type=”text” name=”custom_input” value=”” class=”eStore_text_input eStore_collect_input” />’;
else
$var_output .= ‘<span class=”eStore_custom_input_name”>Instructions: </span><input id=”datepicker” type=”text” name=”custom_input” value=”” class=”eStore_text_input eStore_collect_input” />’;
if ($line_break) $var_output .= ‘
‘;else $var_output .= ‘ ‘;
}
I added an ID in here, but it’s not showing up in the code. Is there another place where this is generated I’m missing?
ZeOneNZeOnlyMemberWhat I’m thinking would be a way to just do this on the field..
I’m going to give this a shot and see if I can get this to work.
February 3, 2014 at 4:34 pm in reply to: eMember-profile-extended-addon – Social media Links in extended profile? #60629ZeOneNZeOnlyMemberanyone have any thoughts on this. I was hoping someone might have looked at this over the weekend
January 31, 2014 at 6:50 pm in reply to: emember-profile-extended-addon displays the page number in the middle of column #60618ZeOneNZeOnlyMemberI also added:
td {
text-align: center;
}
to my style sheet so the columns looked a little better. I didn’t like how the text started at the very front of the box.
January 31, 2014 at 5:58 pm in reply to: emember-profile-extended-addon displays the page number in the middle of column #60617ZeOneNZeOnlyMemberIt was still doing it. It’s okay. I’m only going to have about 40 members here, so I’ll just hide that feature. It looks great and functions great aside from that so it’s no big deal. I don’t need it. Thanks
January 30, 2014 at 10:20 pm in reply to: emember-profile-extended-addon displays the page number in the middle of column #60615ZeOneNZeOnlyMember.pagination-links {
display: none;
}
I added this to the stylesheet to hide it
I just commented that out. Check it out now
-
AuthorPosts