Plugin Directory

Changeset 3395012


Ignore:
Timestamp:
11/13/2025 12:15:13 PM (5 months ago)
Author:
hasthemes
Message:

Update to version 1.4.5 from GitHub

Location:
pixelavo
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • pixelavo/tags/1.4.5/admin/class-notices.php

    r3383108 r3395012  
    116116            .pixelavo-admin-notice.promo-banner {
    117117                position: relative;
    118                 padding: 12px;
     118                padding: 12px !important;
     119                border: 1px solid #c3c4c7;
    119120            }
    120121            .pixelavo-admin-notice.promo-banner a {
    121122                display: flex;
     123            }
     124            .pixelavo-admin-notice.promo-banner *:empty:not(img) {
     125                display: none;
     126            }
     127            .pixelavo-admin-notice.promo-banner .notice-dismiss {
     128                top: -10px;
     129                right: -10px;
     130                background-color: white;
     131                padding: 2px;
     132                border-radius: 50px;
     133                border: 1px solid #ddd;
    122134            }
    123135
  • pixelavo/tags/1.4.5/includes/base.php

    r3394782 r3395012  
    455455        $notices = $noticeManager->get_notices_info();
    456456        if(!empty($notices)) {
    457             $notices = array_map(function($notice) {
    458                 $notice["display_after"] = false;
    459                 $notice["expire_time"] = WEEK_IN_SECONDS;
    460                 return $notice;
    461             }, $notices);
    462457            foreach ($notices as $notice) {
    463458                if(empty($notice['disable'])) {
  • pixelavo/tags/1.4.5/pixelavo.php

    r3394782 r3395012  
    77 * Author:      HasThemes
    88 * Author URI: https://hasthemes.com/
    9  * Version:     1.4.4
     9 * Version:     1.4.5
    1010 * Requires at least: 5.0
    1111 * Requires PHP: 7.4
     
    2626 * Plugin const
    2727 */
    28 define('PIXELAVO_VERSION', '1.4.4');
     28define('PIXELAVO_VERSION', '1.4.5');
    2929define('PIXELAVO_PL_ROOT', __FILE__);
    3030define('PIXELAVO_PL_URL', plugins_url('/', PIXELAVO_PL_ROOT));
  • pixelavo/trunk/admin/class-notices.php

    r3383108 r3395012  
    116116            .pixelavo-admin-notice.promo-banner {
    117117                position: relative;
    118                 padding: 12px;
     118                padding: 12px !important;
     119                border: 1px solid #c3c4c7;
    119120            }
    120121            .pixelavo-admin-notice.promo-banner a {
    121122                display: flex;
     123            }
     124            .pixelavo-admin-notice.promo-banner *:empty:not(img) {
     125                display: none;
     126            }
     127            .pixelavo-admin-notice.promo-banner .notice-dismiss {
     128                top: -10px;
     129                right: -10px;
     130                background-color: white;
     131                padding: 2px;
     132                border-radius: 50px;
     133                border: 1px solid #ddd;
    122134            }
    123135
  • pixelavo/trunk/includes/base.php

    r3394782 r3395012  
    455455        $notices = $noticeManager->get_notices_info();
    456456        if(!empty($notices)) {
    457             $notices = array_map(function($notice) {
    458                 $notice["display_after"] = false;
    459                 $notice["expire_time"] = WEEK_IN_SECONDS;
    460                 return $notice;
    461             }, $notices);
    462457            foreach ($notices as $notice) {
    463458                if(empty($notice['disable'])) {
  • pixelavo/trunk/pixelavo.php

    r3394782 r3395012  
    77 * Author:      HasThemes
    88 * Author URI: https://hasthemes.com/
    9  * Version:     1.4.4
     9 * Version:     1.4.5
    1010 * Requires at least: 5.0
    1111 * Requires PHP: 7.4
     
    2626 * Plugin const
    2727 */
    28 define('PIXELAVO_VERSION', '1.4.4');
     28define('PIXELAVO_VERSION', '1.4.5');
    2929define('PIXELAVO_PL_ROOT', __FILE__);
    3030define('PIXELAVO_PL_URL', plugins_url('/', PIXELAVO_PL_ROOT));
Note: See TracChangeset for help on using the changeset viewer.