Plugin Directory

Changeset 2140120


Ignore:
Timestamp:
08/15/2019 05:01:08 PM (7 years ago)
Author:
jschaves
Message:

Various bug fixes

Location:
very-simple-wp-popup/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • very-simple-wp-popup/trunk/README.txt

    r2130239 r2140120  
    11=== Very Simple WordPress Popup ===
    22Contributors: jchaves
    3 Version:    1.2
     3Version:    1.3
    44Tags: popup, pop-up
    55Stable tag: trunk
     
    4242= 1.2.0 29.07.2019 =
    4343* 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  
    108108                </p>
    109109                <input id="vswpp-id-popup-edit" type="hidden" name="edit" value="null" />
     110                <input type="hidden" name="action" value="vswpp">
    110111            </div>
    111112        </div>
     
    149150                            <form class="vswpp-form-popup" method="post" autocomplete="off" action="<?php echo esc_html( admin_url( 'admin-post.php' ) ); ?>">
    150151                                <input type="hidden" name="delete" value="<?php echo $deleteEditId[1]; ?>" />
     152                                <input type="hidden" name="action" value="vswpp">
    151153                            <?php
    152154                                wp_nonce_field( 'settings-save', 'id-message' );
  • very-simple-wp-popup/trunk/admin/vswpp-class-serializer.php

    r2129250 r2140120  
    2222    */
    2323    public function init() {
    24         add_action( 'admin_post', array( $this, 'save' ) );
     24        add_action( 'admin_post_vswpp', array( $this, 'save' ) );
    2525    }
    2626    /**
  • very-simple-wp-popup/trunk/very-simple-wp-popup-settings.php

    r2130215 r2140120  
    4040// Update CSS within in Admin
    4141function 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' );
    4343}
    4444add_action('admin_enqueue_scripts', 'vswpp_admin_style');
Note: See TracChangeset for help on using the changeset viewer.