Plugin Directory

Changeset 3137260


Ignore:
Timestamp:
08/18/2024 03:40:07 PM (20 months ago)
Author:
abrain
Message:

Code for upcoming release

Location:
einsatzverwaltung/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • einsatzverwaltung/trunk/Frontend.php

    r3061617 r3137260  
    6464        add_action('pre_get_posts', array($this, 'addReportsToQuery'));
    6565        add_filter('default_post_metadata', array($this, 'filterDefaultThumbnail'), 10, 3);
     66
     67        // Adjustment for Avada theme
     68        add_action('awb_remove_third_party_the_content_changes', function () {
     69            remove_filter('the_content', array($this, 'renderContent'), 9);
     70        }, 5);
     71        add_action('awb_readd_third_party_the_content_changes', function () {
     72            add_filter('the_content', array($this, 'renderContent'), 9);
     73        }, 99);
    6674    }
    6775
  • einsatzverwaltung/trunk/css/style-frontend.css

    r2342402 r3137260  
    1212    background-color: #eee;
    1313    border-bottom: 2px solid #ddd;
     14}
     15
     16.einsatzverwaltung-reportlist .einsatz-column-number,
     17.einsatzverwaltung-reportlist .einsatz-column-date,
     18.einsatzverwaltung-reportlist .einsatz-column-time {
     19    white-space: nowrap;
    1420}
    1521
  • einsatzverwaltung/trunk/readme.txt

    r3062190 r3137260  
    3131== Installation ==
    3232
    33 The plugin does not require any setup but it is recommended to take a look at the settings before you start publishing. Especially those in the Advanced section should not be changed inconsiderately later on.
     33The plugin does not require any setup, but it is recommended to take a look at the settings before you start publishing. Especially those in the Advanced section should not be changed inconsiderately later on.
    3434
    3535== Frequently Asked Questions ==
     
    5252
    5353== Changelog ==
     54
     55= 1.11.2 =
     56* Fix: Content was duplicated when using the Avada Website Builder
     57* Fix: Prevent linebreaks for certain columns of the report list
    5458
    5559= 1.11.1 =
     
    8084
    8185== Upgrade Notice ==
     86= 1.11.2 =
     87Maintenance Release
     88
    8289= 1.11.1 =
    8390Maintenance Release
Note: See TracChangeset for help on using the changeset viewer.