Plugin Directory

Changeset 2437180


Ignore:
Timestamp:
12/11/2020 06:47:03 AM (5 years ago)
Author:
prosolution
Message:

1.6.4

  • Fixed radio button position in application form when "no template" (design template setting) is chosen
Location:
prosolution-wp-client/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • prosolution-wp-client/trunk/README.txt

    r2437099 r2437180  
    66Tested up to: 4.9.5
    77Requires PHP: 5.6
    8 Stable tag: 1.6.3
     8Stable tag: 1.6.4
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    6666
    6767== Changelog ==
     68
     69= 1.6.4 =
     70* Fixed radio button position in application form when "no template" (design template setting) is chosen
    6871
    6972= 1.6.3 =
  • prosolution-wp-client/trunk/prosolwpclient.php

    r2437099 r2437180  
    1717     * Plugin URI:        https://prosolution.com/produkte-und-services/workexpert.html
    1818     * Description:       WordPress client for ProSolution
    19      * Version:           1.6.3
     19     * Version:           1.6.4
    2020     * Author:            ProSolution
    2121     * Author URI:        https://www.prosolution.com
     
    3939
    4040    defined('PROSOLWPCLIENT_PLUGIN_NAME') or define('PROSOLWPCLIENT_PLUGIN_NAME', 'prosolwpclient');
    41     defined('PROSOLWPCLIENT_PLUGIN_VERSION') or define('PROSOLWPCLIENT_PLUGIN_VERSION', '1.6.3');
     41    defined('PROSOLWPCLIENT_PLUGIN_VERSION') or define('PROSOLWPCLIENT_PLUGIN_VERSION', '1.6.4');
    4242    defined('PROSOLWPCLIENT_BASE_NAME') or define('PROSOLWPCLIENT_BASE_NAME', plugin_basename(__FILE__));
    4343    defined('PROSOLWPCLIENT_ROOT_PATH') or define('PROSOLWPCLIENT_ROOT_PATH', plugin_dir_path(__FILE__));
  • prosolution-wp-client/trunk/public/templates/singlefieldset/modals/prosolwpclientjobapplicationattachmentmodal.php

    r2426214 r2437180  
    2828
    2929                        <div class="col-lg-10 error-msg-show">
    30                             <label class="radio-inline pswp-attach-radio-docu"><span><?php esc_html_e( 'This is an application document', 'prosolwpclient' ) ?></span>
    31                                 <input name="attachtype" type="radio" value="docu" class="pswp-attach-type"
    32                                        id="attachtype" required checked
    33                                 ><span class="radiomark" ></span>
     30                            <label class="radio-inline pswp-attach-radio-docu">
     31                                <input name="attachtype" type="radio" value="docu" class="pswp-attach-type" id="attachtype" required checked>
     32                                <span><?php esc_html_e( 'This is an application document', 'prosolwpclient' ) ?></span>
     33                                <span class="radiomark" ></span>
    3434                            </label>
    35                             <label class="radio-inline pswp-attach-radio-photo"><span><?php esc_html_e( 'This is my photo', 'prosolwpclient' ) ?></span>
    36                                 <input name="attachtype" type="radio" value="photo" class="pswp-attach-type"
    37                                        id="attachtype"
    38                                        required> <span class="radiomark" ></span>
     35                            <label class="radio-inline pswp-attach-radio-photo">
     36                                <input name="attachtype" type="radio" value="photo" class="pswp-attach-type" id="attachtype" required>
     37                                <span><?php esc_html_e( 'This is my photo', 'prosolwpclient' ) ?></span>
     38                                <span class="radiomark" ></span>
    3939                            </label>
    4040                        </div>
  • prosolution-wp-client/trunk/public/templates/singlefieldset/prosolwpclientjobapplicationpersonalinfo.php

    r2437099 r2437180  
    250250        </label>
    251251        <div class="col-lg-9 error-msg-show">
    252             <label class="radio-inline"><span style="margin-left:0.2em"> <?php esc_html_e( 'Female', 'prosolwpclient' ) ?></span>
    253                 <input name="gender" type="radio" value="0" <?php echo $field_opt['gender'][3] ?>
    254                     data-rule-required="true" id="gender"><span class="radiomark"></span>
     252            <label class="radio-inline">
     253                <input name="gender" type="radio" value="0" <?php echo $field_opt['gender'][3] ?> data-rule-required="true" id="gender">
     254                    <span style="margin-left:0.2em"> <?php esc_html_e( 'Female', 'prosolwpclient' ) ?></span>
     255                    <span class="radiomark"></span>
    255256            </label>
    256             <label class="radio-inline"><span style="margin-left:0.2em"> <?php esc_html_e( 'Male', 'prosolwpclient' ) ?></span>
    257                 <input name="gender" type="radio" value="1" <?php echo $field_opt['gender'][3] ?>
    258                     data-rule-required="true" id="gender"> <span class="radiomark"></span>
     257            <label class="radio-inline">
     258                <input name="gender" type="radio" value="1" <?php echo $field_opt['gender'][3] ?> data-rule-required="true" id="gender">
     259                    <span style="margin-left:0.2em"> <?php esc_html_e( 'Male', 'prosolwpclient' ) ?></span>
     260                     <span class="radiomark"></span>
    259261            </label>
    260             <label class="radio-inline <?php echo $field_opt['diverse'][1] ?>" ><span style="margin-left:0.2em"> <?php esc_html_e( 'Diverse', 'prosolwpclient' ) ?></span>
    261                 <input name="gender" type="radio" value="2" <?php echo $field_opt['gender'][3] ?>
    262                     data-rule-required="true" id="gender"> <span class="radiomark"></span>
     262            <label class="radio-inline <?php echo $field_opt['diverse'][1] ?>" >
     263                <input name="gender" type="radio" value="2" <?php echo $field_opt['gender'][3] ?> data-rule-required="true" id="gender">
     264                    <span style="margin-left:0.2em"> <?php esc_html_e( 'Diverse', 'prosolwpclient' ) ?></span>
     265                    <span class="radiomark"></span>
    263266            </label>
    264267        </div>
Note: See TracChangeset for help on using the changeset viewer.