Plugin Directory

Changeset 3174421


Ignore:
Timestamp:
10/23/2024 02:30:49 PM (15 months ago)
Author:
wpminds
Message:

Added Feedback review notice

Location:
simple-wp-events
Files:
104 added
4 edited

Legend:

Unmodified
Added
Removed
  • simple-wp-events/trunk/admin/class-wp-events-admin.php

    r3043690 r3174421  
    14951495    }
    14961496
     1497    function wpe_plugin_display_activation_notice() {
     1498        echo '<div class="wpe-notice notice-info notice is-dismissible" style="background-color:#fff; display:flex; align-items:center; gap:20px;">';
     1499        echo '<img width="100" src="'. plugins_url() . '/' . WPE_PLUGIN_BASE . '/assets/feedback.png' .'">';
     1500        echo '<div class="wpe-notice-content">';
     1501        echo '<p>' . esc_html__('Hello! It looks like you\'ve been using Simple WP Events Plugin on your website — thank you so much!', 'simple-wp-events') . '</p>';
     1502        echo '<p>' . esc_html__('If you could take a moment to leave us a 5-star rating on WordPress, we\'d greatly appreciate it. Your support not only motivates us but also helps other users make informed choices when selecting Simple WP Events Plugin. Thank you!', 'simple-wp-events') . '</p>';
     1503        echo '<p><a href="https://wordpress.org/plugins/simple-wp-events/#reviews" class="button button-primary" target="_blank">Review Us</a></p>';
     1504        echo '</div>';
     1505        echo '</div>';
     1506    }
     1507
    14971508}
  • simple-wp-events/trunk/changelog.txt

    r3024065 r3174421  
     1Version-1.8.14
     2Added: Feedback Review notice.
     3
    14Version-1.8.12
    25Fixed: Bug in venue on single events page.
  • simple-wp-events/trunk/includes/class-wp-events.php

    r3043690 r3174421  
    198198        $this->loader->add_filter( 'plugin_action_links_' . $plugin, $plugin_admin, 'wpe_add_settings_link', 10, 3 );
    199199        $this->loader->add_action( 'admin_notices', $plugin_admin, 'wpe_premium_admin_notice' );
     200        $this->loader->add_action( 'admin_notices', $plugin_admin, 'wpe_plugin_display_activation_notice' );
    200201
    201202        //Handle view/edit entry ajax request
  • simple-wp-events/trunk/wp-events.php

    r3043690 r3174421  
    1313 * Plugin URI:        https://simplewpevents.com/
    1414 * Description:       The only WordPress plugin to create, manage and update hassle free events
    15  * Version:           1.8.13
     15 * Version:           1.8.14
    1616 * Requires at least: 5.0
    1717 * Requires PHP:      7.0
     
    3131 * Currently plugin version.
    3232 */
    33 define( 'WP_EVENTS_VERSION', '1.8.13' );
     33define( 'WP_EVENTS_VERSION', '1.8.14' );
    3434
    3535/**
Note: See TracChangeset for help on using the changeset viewer.