Changeset 2140120
- Timestamp:
- 08/15/2019 05:01:08 PM (7 years ago)
- Location:
- very-simple-wp-popup/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
admin/views/vswpp-settings.php (modified) (2 diffs)
-
admin/vswpp-class-serializer.php (modified) (1 diff)
-
very-simple-wp-popup-settings.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
very-simple-wp-popup/trunk/README.txt
r2130239 r2140120 1 1 === Very Simple WordPress Popup === 2 2 Contributors: jchaves 3 Version: 1. 23 Version: 1.3 4 4 Tags: popup, pop-up 5 5 Stable tag: trunk … … 42 42 = 1.2.0 29.07.2019 = 43 43 * Various **bug fixes** 44 = 1.3.0 15.08.2919 = 45 * Various **bug fixes** -
very-simple-wp-popup/trunk/admin/views/vswpp-settings.php
r2130215 r2140120 108 108 </p> 109 109 <input id="vswpp-id-popup-edit" type="hidden" name="edit" value="null" /> 110 <input type="hidden" name="action" value="vswpp"> 110 111 </div> 111 112 </div> … … 149 150 <form class="vswpp-form-popup" method="post" autocomplete="off" action="<?php echo esc_html( admin_url( 'admin-post.php' ) ); ?>"> 150 151 <input type="hidden" name="delete" value="<?php echo $deleteEditId[1]; ?>" /> 152 <input type="hidden" name="action" value="vswpp"> 151 153 <?php 152 154 wp_nonce_field( 'settings-save', 'id-message' ); -
very-simple-wp-popup/trunk/admin/vswpp-class-serializer.php
r2129250 r2140120 22 22 */ 23 23 public function init() { 24 add_action( 'admin_post ', array( $this, 'save' ) );24 add_action( 'admin_post_vswpp', array( $this, 'save' ) ); 25 25 } 26 26 /** -
very-simple-wp-popup/trunk/very-simple-wp-popup-settings.php
r2130215 r2140120 40 40 // Update CSS within in Admin 41 41 function vswpp_admin_style() { 42 wp_enqueue_style( ' admin-styles', plugin_dir_url( __FILE__ ) . 'admin/css/style.css' );42 wp_enqueue_style( 'vswpp-admin-styles', plugin_dir_url( __FILE__ ) . 'admin/css/style.css' ); 43 43 } 44 44 add_action('admin_enqueue_scripts', 'vswpp_admin_style');
Note: See TracChangeset
for help on using the changeset viewer.