Plugin Directory

Changeset 3140080


Ignore:
Timestamp:
08/23/2024 02:53:42 AM (17 months ago)
Author:
dashify
Message:

1.3.2

Location:
dashify
Files:
75 added
6 edited

Legend:

Unmodified
Added
Removed
  • dashify/trunk/admin/css/dashify-table-styles.css

    r3136828 r3140080  
    586586}
    587587
     588.post-type-shop_order .wp-list-table td.column-order_total,
     589.post-type-shop_order .wp-list-table td.column-wc_actions,
     590.woocommerce_page_wc-orders .wc-orders-list-table.wp-list-table td.column-order_total,
     591.woocommerce_page_wc-orders .wc-orders-list-table.wp-list-table td.column-wc_actions {
     592    text-align: right !important;
     593}
     594
    588595.wp-list-table .column-order_date {
    589596    width: revert !important;
     
    614621    display: flex;
    615622    justify-content: space-between;
     623    align-items: center;
    616624    max-width: 40vw;
    617625    box-sizing: border-box;
     
    626634    float: none !important;
    627635    width: 20px !important;
     636    margin-top: 0 !important;
    628637}
    629638
    630639.wp-list-table .order-view {
    631     display: flex;
     640    display: flex !important;
    632641    flex-grow: 0;
    633     overflow: hidden;
     642    overflow: hidden !important;
     643    width: fit-content !important;
    634644}
    635645
     
    856866
    857867.wp-list-table thead th,
    858 .wp-list-table tr:not(.inline-edit-row):not(.no-items) td:not(.check-column) {
     868.wp-list-table tr:not(.inline-edit-row):not(.no-items):not(.type-product):not(.type-shop_subscription) td:not(.check-column) {
    859869    width: fit-content !important;
     870    top: inherit !important;
     871    right: inherit !important;
     872    vertical-align: inherit !important;
    860873}
    861874
     
    10231036    }
    10241037
    1025     .post-type-shop_order .wp-list-table tbody td.column-order_date,
    1026     .post-type-shop_order .wp-list-table tbody td.column-order_status {
     1038    .post-type-shop_order .wp-list-table tr:not(.is-expanded) td.column-order_date,
     1039    .woocommerce_page_wc-orders .wc-orders-list-table.wp-list-table tr:not(.is-expanded) td.column-order_date {
     1040        display: table-cell !important;
     1041    }
     1042
     1043    .post-type-shop_order .wp-list-table tbody#the-list td.column-order_date,
     1044    .post-type-shop_order .wp-list-table tbody#the-list td.column-order_status {
    10271045        display: table-cell !important;
    10281046    }
     
    10351053    .wp-list-table thead .check-column#cb {
    10361054        width: 25px !important;
     1055        vertical-align: inherit;
    10371056    }
    10381057
  • dashify/trunk/admin/js/dashify-table-script.js

    r3136828 r3140080  
    101101            let searchMessage = '';
    102102            if (val === 'all') {
    103                 searchMessage = 'Searching all orders';
     103                searchMessage = 'Search';
    104104            } else {
    105105                const prettySearchFilter = document.querySelector(`#order-search-filter option[value="${val}"]`).innerHTML;
     
    114114    } else {
    115115        // Search bar placeholder if there's no search filter dropdown
    116         (document.querySelector('#post-search-input') ?? document.querySelector('#orders-search-input-search-input'))?.setAttribute('placeholder', 'Searching all orders');
     116        (document.querySelector('#post-search-input') ?? document.querySelector('#orders-search-input-search-input'))?.setAttribute('placeholder', 'Search');
    117117    }
    118118
  • dashify/trunk/dashify.php

    r3136828 r3140080  
    33 * Plugin Name: Dashify
    44 * Description: A modern design and UI for the WooCommerce admin. Manage, search, and navigate orders faster. Make the WordPress admin dashboard ecommerce-focused.
    5  * Version: 1.3.1
     5 * Version: 1.3.2
    66 * Author: Dashify
    77 * License: GPLv2 or later
     
    2121class Dashify_Base
    2222{
    23     const VERSION = '1.3.1';
     23    const VERSION = '1.3.2';
    2424
    2525    // HPOS
     
    468468                    'heading' => 'Bug fixes',
    469469                    'content' => array(
    470                         'Dashify’s custom admin navigation now works with non-English languages.',
    471                         '“Products → Add New” submenu is now highlighted when using the new product editor.',
     470                        'Rank Math icon and menu items show correctly in Dashify’s admin menu.',
     471                        'Fixed “Searching all orders” also showing for subscriptions and products.',
     472                        'Made order list compatible with newest version of WooCommerce on mobile.',
    472473                    )
    473474                ),
  • dashify/trunk/modules/navigation/navigation.css

    r3133356 r3140080  
    201201    margin-right: 0.1rem;
    202202}
     203
     204/* Compatibility */
     205
     206/* Without this, the submenu items are hidden by the plugin using this same
     207rule, but set to `display:none`. */
     208a#toplevel_page_rank-math:not(.wp-has-submenu) {
     209    display: flex;
     210}
     211
     212/* This is the red circle next to Analytics in the Rank Math submenu. */
     213span.rm-menu-new {
     214    margin-left: 0 !important;
     215    margin-top: 1px !important;
     216    border-radius: 1rem;
     217}
     218
     219/* Move the external link icon a little to the left. */
     220a[href^="https://rankmath.com/kb/"] i {
     221    margin-left: -6px;
     222}
  • dashify/trunk/modules/navigation/navigation.php

    r3136828 r3140080  
    269269                'edit.php?post_type=page' => 'pages',
    270270                'edit-comments.php' => 'comments',
     271                'rank-math' => 'rank-math',
    271272                'themes.php' => 'appearance',
    272273                'plugins.php' => 'plugins',
  • dashify/trunk/readme.txt

    r3136828 r3140080  
    44Requires at least: 4.7
    55Tested up to: 6.6
    6 Stable tag: 1.3.1
     6Stable tag: 1.3.2
    77Requires PHP: 7.0
    88License: GPLv2 or later
     
    107107== Changelog ==
    108108
     109### 1.3.2 (2024-08-22)
     110
     111#### Bug fixes
     112- Fixed Rank Math menu items and icon not showing correctly in Dashify’s navigation.
     113- Fixed “Searching all orders” text also showing in subscription and product list tables.
     114- Fixed broken order list table on mobile due to a recent WooCommerce update.
     115
    109116### 1.3.1 (2024-08-16)
    110117
Note: See TracChangeset for help on using the changeset viewer.