Plugin Directory

Changeset 3002023


Ignore:
Timestamp:
11/27/2023 07:18:10 AM (2 years ago)
Author:
shakeelu
Message:

Update popup and readme file

Location:
confetti-fall-animation
Files:
6 edited

Legend:

Unmodified
Added
Removed
  • confetti-fall-animation/tags/1.2.0/assets/css/popup-plugin.css

    r2967085 r3002023  
    1818    transform: translate(-50%, -50%);
    1919    background-color: #fff;
    20     padding: 30px;
     20    padding: 20px;
    2121    height: auto;
    2222    width: 35%;
    2323    text-align: center;
    2424    box-shadow: -50px 0 200px -50px #504bff, 50px 0 200px -50px #4cfa63;
    25     border-radius: 12px;
     25    border-radius: 6px;
    2626    display: none;
    27     z-index: 1000;
     27    z-index: 9999;
    2828    transition: all ease-in .4s;
    2929}
    30 #confetti-popup h1 {
     30#confetti-popup h2 {
    3131    font-family: inherit;
    3232    font-size: 36px;
  • confetti-fall-animation/tags/1.2.0/confetti-fall-animation.php

    r2967093 r3002023  
    33/**
    44 * @package confetti-fall-animation
    5  * @version 1.2.0
     5 * @version 1.2.1
    66 **/
    77
     
    1212Author: WPDeveloperr
    1313Author URI: https://wpdeveloperr.com/
    14 Version: 1.2.0
     14Version: 1.2.1
    1515License: GPLv2 or later
    1616Text Domain: confetti-fall-animation
     
    190190function confetti_popup_content_callback() {
    191191    $content = get_option('confetti-popup-content', '');
    192     $value  = !empty($content) ?  $content : '<h1> Welcome to Confetti Animation</h1>';
     192    $value  = !empty($content) ?  $content : '<h2> Welcome to Confetti Animation</h2>';
    193193    echo '<textarea name="confetti-popup-content" rows="5" cols="50">' . esc_textarea($value) . '</textarea>';
    194194    echo '<br><small>You can use html tags as well</small>';
     
    213213        // Display the popup content here
    214214        ?>
    215         <div id="confetti-popup" style="display: none;"> <?php echo wp_kses_post($content); ?> <a id="confetti-popup-close"> <i class="fa fa-phone"></i> Close</a> </div>; <?php
     215        <div id="confetti-popup" style="display: none;"> <?php echo wp_kses_post($content); ?> <a id="confetti-popup-close"> <i class="fa fa-close"></i></a> </div>; <?php
    216216    }
    217217}
  • confetti-fall-animation/tags/1.2.0/readme.txt

    r2967093 r3002023  
    33Tags: happy new year, confetti, fireworks, fall animation, celebration, fun, falling roses, happy, leaves falling, Summer, winter, New year night
    44Requires at least: 5.0.1
    5 Tested up to: 6.3
    6 Stable tag: 1.2.0
     5Tested up to: 6.4
     6Stable tag: 1.2.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4646== Changelog ==
    4747
     48= 1.2.1 =
     49* Some Popup bugs fixed.
     50* Easy customization added.
     51
    4852= 1.2.0 =
    4953* A dashboard menu added.
  • confetti-fall-animation/trunk/assets/css/popup-plugin.css

    r2967085 r3002023  
    1818    transform: translate(-50%, -50%);
    1919    background-color: #fff;
    20     padding: 30px;
     20    padding: 20px;
    2121    height: auto;
    2222    width: 35%;
    2323    text-align: center;
    2424    box-shadow: -50px 0 200px -50px #504bff, 50px 0 200px -50px #4cfa63;
    25     border-radius: 12px;
     25    border-radius: 6px;
    2626    display: none;
    27     z-index: 1000;
     27    z-index: 9999;
    2828    transition: all ease-in .4s;
    2929}
    30 #confetti-popup h1 {
     30#confetti-popup h2 {
    3131    font-family: inherit;
    3232    font-size: 36px;
  • confetti-fall-animation/trunk/confetti-fall-animation.php

    r2967093 r3002023  
    33/**
    44 * @package confetti-fall-animation
    5  * @version 1.2.0
     5 * @version 1.2.1
    66 **/
    77
     
    1212Author: WPDeveloperr
    1313Author URI: https://wpdeveloperr.com/
    14 Version: 1.2.0
     14Version: 1.2.1
    1515License: GPLv2 or later
    1616Text Domain: confetti-fall-animation
     
    119119    $parent_url = 'confetti-animation';
    120120    $icon_url = 'dashicons-buddicons-community';
    121     add_menu_page('CF Animation','CF Animation','manage_options', $parent_url,'confetti_animation_page',$icon_url, 80);
     121    add_menu_page('CF Animation','CF Animation','manage_options', $parent_url,'confetti_animation_page', $icon_url, 80);
    122122    add_submenu_page( $parent_url, 'Popup Settings', 'Popup Settings', 'manage_options', 'popup-settings', 'confetti_popup_setting_page');
    123123
     
    190190function confetti_popup_content_callback() {
    191191    $content = get_option('confetti-popup-content', '');
    192     $value  = !empty($content) ?  $content : '<h1> Welcome to Confetti Animation</h1>';
     192    $value  = !empty($content) ?  $content : '<h2> Welcome to Confetti Animation</h2>';
    193193    echo '<textarea name="confetti-popup-content" rows="5" cols="50">' . esc_textarea($value) . '</textarea>';
    194194    echo '<br><small>You can use html tags as well</small>';
     
    213213        // Display the popup content here
    214214        ?>
    215         <div id="confetti-popup" style="display: none;"> <?php echo wp_kses_post($content); ?> <a id="confetti-popup-close"> <i class="fa fa-phone"></i> Close</a> </div>; <?php
     215        <div id="confetti-popup" style="display: none;"> <?php echo wp_kses_post($content); ?> <a id="confetti-popup-close"> <i class="fa fa-close"></i></a> </div>; <?php
    216216    }
    217217}
  • confetti-fall-animation/trunk/readme.txt

    r2967093 r3002023  
    33Tags: happy new year, confetti, fireworks, fall animation, celebration, fun, falling roses, happy, leaves falling, Summer, winter, New year night
    44Requires at least: 5.0.1
    5 Tested up to: 6.3
    6 Stable tag: 1.2.0
     5Tested up to: 6.4
     6Stable tag: 1.2.1
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4040== Compatibility ==
    4141
    42 Fully compatible with elementor, WPbakery, Divi, Gutenburg blocks. Add Confetti fall animation via shortcode and enjoy.
     42Fully compatible with elementor, WPbakery, Divi, Gutenburg blocks. Add Confetti fall animation via Shortcode and enjoy.
    4343
    4444================================================================================
    4545
    4646== Changelog ==
     47
     48= 1.2.1 =
     49* Some Popup bugs fixed.
     50* Easy customization added.
    4751
    4852= 1.2.0 =
Note: See TracChangeset for help on using the changeset viewer.