Changeset 1783728
- Timestamp:
- 12/09/2017 08:14:21 AM (8 years ago)
- File:
-
- 1 edited
-
wc-age-verification/trunk/index.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wc-age-verification/trunk/index.php
r1776655 r1783728 4 4 Plugin URI: https://wordpress.org/plugins/wc-age-verification/ 5 5 Description: This plugin allows you to set age restrictions on orders 6 Version: 1.0. 16 Version: 1.0.2 7 7 Author: Ilario Tresoldi 8 8 Author URI: http://www.webcreates.eu … … 49 49 function wcav_custom_enqueue_datepicker() { 50 50 wp_enqueue_script('jquery-ui-datepicker'); 51 wp_localize_jquery_ui_datepicker(); 51 52 wp_register_style('datepicker_css', plugins_url('css/jquery-ui.css',__FILE__ )); 52 53 wp_enqueue_style('datepicker_css'); … … 61 62 'readonly' => 'readonly', 62 63 'class' => array('my-field-class form-row-wide'), 63 'label' => _ _('Your Birthdate (mm-dd-yyyy)'),64 'placeholder' => _ _(''),64 'label' => _e('Your Birthdate (mm-dd-yyyy)', 'cav'), 65 'placeholder' => _e(''), 65 66 'id'=>__('MyDate') 66 67 ), $checkout->get_value( 'my_field_name' ));
Note: See TracChangeset
for help on using the changeset viewer.