Plugin Directory

Changeset 2724478


Ignore:
Timestamp:
05/16/2022 10:06:23 AM (4 years ago)
Author:
Access Keys
Message:

Checked Compatibility with WordPress version 5.9
Changed some Frontend form related design

Location:
ap-contact-form
Files:
36 added
4 edited

Legend:

Unmodified
Added
Removed
  • ap-contact-form/trunk/ap-contact-form.php

    r2607086 r2724478  
    55  Plugin URI:  accesspressthemes.com/wordpress-plugins/ap-contact-form
    66  Description: A simple contact form plugin by Accesspress
    7   Version:     1.0.7
     7  Version:     1.0.8
    88  Author:      AccessPress Themes
    99  Author URI:  http://accesspressthemes.com
     
    7373            defined('APCF_IMG_DIR') or define('APCF_IMG_DIR',plugin_dir_url(__FILE__).'/images');
    7474            defined('APCF_PATH') or define('APCF_PATH',plugin_dir_path(__FILE__));
    75             defined('APCF_VERSION') or define('APCF_VERSION','1.0.7');
     75            defined('APCF_VERSION') or define('APCF_VERSION','1.0.8');
    7676        }
    7777
  • ap-contact-form/trunk/css/frontend.css

    r1780465 r2724478  
    55    margin-bottom: 10px;
    66
     7}
     8.ap-message-field{
     9    width: 100%;
    710}
    811.ap-error-msg{
     
    3336
    3437.apcf-shortcode-wrapper .ap-contact-field input[type="text"],
    35 .apcf-shortcode-wrapper .ap-contact-field input[type="email"]{
     38.apcf-shortcode-wrapper .ap-contact-field input[type="email"],
     39.apcf-shortcode-wrapper .ap-contact-field textarea{
    3640    width: 100%;
     41    padding: 9px;   
     42    border: 1px solid black;      /** */
     43    border-radius: 7px;
     44    box-sizing: border-box;
     45}
     46   
     47.ap-contact-field-wrap .ap-contact-field-submit input{
     48    background-color: darkslategray;
     49    color: white;
     50    font-weight: bold;
     51    padding: 7px;
     52    border:0 none;
     53    border-radius: 4px;
    3754}
    3855
     56.ap-contact-field-wrap .ap-contact-field-submit input:hover{
     57    background-color: black;
     58
     59}
     60
  • ap-contact-form/trunk/inc/frontend/shortcode.php

    r1697862 r2724478  
    5858                <?php endif;?>
    5959                <div class="ap-contact-field">
    60                     <textarea name="ap_contact_field[message]" class="ap-message-field <?php echo ($ap_contact_form_settings['apcf-required-message']) ? 'ap-required-field' : ''; ?>" <?php if ($ap_contact_form_settings['apcf-placeholder-message'] ) echo 'placeholder="'.esc_attr( $ap_contact_form_settings['apcf-label-message'] ).'"'; ?>></textarea>
     60                    <textarea name="ap_contact_field[message]" rows="6" class="ap-message-field <?php echo ($ap_contact_form_settings['apcf-required-message']) ? 'ap-required-field' : ''; ?>" <?php if ($ap_contact_form_settings['apcf-placeholder-message'] ) echo 'placeholder="'.esc_attr( $ap_contact_form_settings['apcf-label-message'] ).'"'; ?>></textarea>
    6161                </div>
    6262                <?php if ( $ap_contact_form_settings['apcf-required-message'] ): ?>
     
    8787        <?php if ( $ap_contact_form_settings['apcf-display-submit'] ): ?>
    8888            <div class="ap-contact-field-wrap">
    89                 <div class="ap-contact-field apcf-submit-form">
     89                <div class="ap-contact-field-submit apcf-submit-form">
    9090                    <input type="submit" name="ap_contact_field[form_submit]" value="<?php echo esc_attr( $ap_contact_form_settings['apcf-label-submit'] ); ?>"/>
    9191                    <!-- Ajax Loader -->
  • ap-contact-form/trunk/readme.txt

    r2607086 r2724478  
    44Donate link: http://accesspressthemes.com/donation/
    55Requires at least: 4.0
    6 Tested up to: 5.8
    7 Stable tag: 1.0.7
     6Tested up to: 5.9
     7Stable tag: 1.0.8
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    9191
    9292== Changelog ==
     93= 1.0.8 =
     94* Checked Compatibility with wordpress version 5.9
     95* Changed some Frontend form related design
     96
    9397= 1.0.7 =
    9498* Checked Compatibility with wordpress version 5.8.
Note: See TracChangeset for help on using the changeset viewer.