Plugin Directory

Changeset 3228096


Ignore:
Timestamp:
01/24/2025 02:32:51 PM (14 months ago)
Author:
axeptio
Message:

version 2.5.6 release

Location:
axeptio-sdk-integration
Files:
1502 added
3 edited

Legend:

Unmodified
Added
Removed
  • axeptio-sdk-integration/trunk/axeptio-wordpress-plugin.php

    r3214712 r3228096  
    44    Plugin URI: https://www.axeptio.eu/
    55    Description: Axeptio allows you to make your website compliant with GDPR.
    6     Version: 2.5.5
     6    Version: 2.5.6
    77    Author: axeptio
    88    License: GPLv3
     
    1212 **/
    1313
    14 define( 'XPWP_VERSION', '2.5.5' );
     14define( 'XPWP_VERSION', '2.5.6' );
    1515define( 'XPWP_URL', plugin_dir_url( __FILE__ ) );
    1616define( 'XPWP_PATH', plugin_dir_path( __FILE__ ) );
  • axeptio-sdk-integration/trunk/includes/classes/frontend/class-hook-modifier.php

    r3206185 r3228096  
    118118     */
    119119    public function on_template_redirect() {
     120        if (count(Plugins::find_all()) === 0) {
     121            return;
     122        }
    120123        $this->process_shortcode_tags();
    121124        $this->process_wp_filter();
     
    314317            'priority' => null,
    315318        );
     319
     320        if ($hook === 'seopress_compatibility_woocommerce') {
     321            return false;
     322        }
    316323
    317324        $matching_hook = false;
  • axeptio-sdk-integration/trunk/readme.txt

    r3214712 r3228096  
    44Requires at least: 5.0
    55Tested up to: 6.5.5
    6 Stable tag: 2.5.5
     6Stable tag: 2.5.6
    77Requires PHP: 7.4
    88License: GPLv3
     
    8585== Changelog ==
    8686
     87### ⚡️ 2.5.6 ⚡️ ###
     88
     89**Shutdown the hook parser if no extension is filtered in the configuration 💤**
     90
    8791### 🔒 2.5.5 🔒 ###
    8892
Note: See TracChangeset for help on using the changeset viewer.