Changeset 2724478
- Timestamp:
- 05/16/2022 10:06:23 AM (4 years ago)
- Location:
- ap-contact-form
- Files:
-
- 36 added
- 4 edited
-
tags/1.0.8 (added)
-
tags/1.0.8/ap-contact-form.php (added)
-
tags/1.0.8/css (added)
-
tags/1.0.8/css/backend.css (added)
-
tags/1.0.8/css/font-awesome.min.css (added)
-
tags/1.0.8/css/frontend.css (added)
-
tags/1.0.8/fonts (added)
-
tags/1.0.8/fonts/FontAwesome.otf (added)
-
tags/1.0.8/fonts/fontawesome-webfont.eot (added)
-
tags/1.0.8/fonts/fontawesome-webfont.svg (added)
-
tags/1.0.8/fonts/fontawesome-webfont.ttf (added)
-
tags/1.0.8/fonts/fontawesome-webfont.woff (added)
-
tags/1.0.8/fonts/fontawesome-webfont.woff2 (added)
-
tags/1.0.8/images (added)
-
tags/1.0.8/images/ajax-loader.gif (added)
-
tags/1.0.8/images/customize.png (added)
-
tags/1.0.8/images/plugin.png (added)
-
tags/1.0.8/images/select_arrow.png (added)
-
tags/1.0.8/images/theme.png (added)
-
tags/1.0.8/inc (added)
-
tags/1.0.8/inc/backend (added)
-
tags/1.0.8/inc/backend/apcf-about.php (added)
-
tags/1.0.8/inc/backend/how-to.php (added)
-
tags/1.0.8/inc/backend/settings.php (added)
-
tags/1.0.8/inc/backend/widget.php (added)
-
tags/1.0.8/inc/frontend (added)
-
tags/1.0.8/inc/frontend/shortcode.php (added)
-
tags/1.0.8/index.php (added)
-
tags/1.0.8/js (added)
-
tags/1.0.8/js/backend.js (added)
-
tags/1.0.8/js/frontend.js (added)
-
tags/1.0.8/languages (added)
-
tags/1.0.8/languages/ap-contact-form-ne_NP.mo (added)
-
tags/1.0.8/languages/ap-contact-form-ne_NP.po (added)
-
tags/1.0.8/languages/ap-contact-form.pot (added)
-
tags/1.0.8/readme.txt (added)
-
trunk/ap-contact-form.php (modified) (2 diffs)
-
trunk/css/frontend.css (modified) (2 diffs)
-
trunk/inc/frontend/shortcode.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
ap-contact-form/trunk/ap-contact-form.php
r2607086 r2724478 5 5 Plugin URI: accesspressthemes.com/wordpress-plugins/ap-contact-form 6 6 Description: A simple contact form plugin by Accesspress 7 Version: 1.0. 77 Version: 1.0.8 8 8 Author: AccessPress Themes 9 9 Author URI: http://accesspressthemes.com … … 73 73 defined('APCF_IMG_DIR') or define('APCF_IMG_DIR',plugin_dir_url(__FILE__).'/images'); 74 74 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'); 76 76 } 77 77 -
ap-contact-form/trunk/css/frontend.css
r1780465 r2724478 5 5 margin-bottom: 10px; 6 6 7 } 8 .ap-message-field{ 9 width: 100%; 7 10 } 8 11 .ap-error-msg{ … … 33 36 34 37 .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{ 36 40 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; 37 54 } 38 55 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 58 58 <?php endif;?> 59 59 <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> 61 61 </div> 62 62 <?php if ( $ap_contact_form_settings['apcf-required-message'] ): ?> … … 87 87 <?php if ( $ap_contact_form_settings['apcf-display-submit'] ): ?> 88 88 <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"> 90 90 <input type="submit" name="ap_contact_field[form_submit]" value="<?php echo esc_attr( $ap_contact_form_settings['apcf-label-submit'] ); ?>"/> 91 91 <!-- Ajax Loader --> -
ap-contact-form/trunk/readme.txt
r2607086 r2724478 4 4 Donate link: http://accesspressthemes.com/donation/ 5 5 Requires at least: 4.0 6 Tested up to: 5. 87 Stable tag: 1.0. 76 Tested up to: 5.9 7 Stable tag: 1.0.8 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 91 91 92 92 == Changelog == 93 = 1.0.8 = 94 * Checked Compatibility with wordpress version 5.9 95 * Changed some Frontend form related design 96 93 97 = 1.0.7 = 94 98 * Checked Compatibility with wordpress version 5.8.
Note: See TracChangeset
for help on using the changeset viewer.