Plugin Directory

Changeset 3448843


Ignore:
Timestamp:
01/28/2026 04:15:30 PM (2 months ago)
Author:
NicolasKulka
Message:

Fix add to archive button

Location:
wps-bidouille
Files:
112 added
3 edited

Legend:

Unmodified
Added
Removed
  • wps-bidouille/trunk/assets/js/functions.js

    r3426272 r3448843  
    6666    });
    6767
     68    $('#nav-add-archive').click(function () {
     69        $('#add-archive').attr('class', 'wps-view');
     70        $('#add-mass').attr('class', 'wps-hide');
     71        $('#add-simple').attr('class', 'wps-hide');
     72        $('#nav-add-mass').attr('class', 'not-current');
     73        $('#nav-add-simple').attr('class', 'not-current');
     74        $('#nav-add-archive').attr('class', 'current');
     75    });
    6876    $('#nav-add-mass').click(function () {
    6977        $('#add-mass').attr('class', 'wps-view');
    7078        $('#add-simple').attr('class', 'wps-hide');
     79        $('#add-archive').attr('class', 'wps-hide');
    7180        $('#nav-add-mass').attr('class', 'current');
    7281        $('#nav-add-simple').attr('class', 'not-current');
     82        $('#nav-add-archive').attr('class', 'not-current');
    7383    });
    7484    $('#nav-add-simple').click(function () {
    7585        $('#add-simple').attr('class', 'wps-view');
    7686        $('#add-mass').attr('class', 'wps-hide');
     87        $('#add-archive').attr('class', 'wps-hide');
    7788        $('#nav-add-mass').attr('class', 'not-current');
    7889        $('#nav-add-simple').attr('class', 'current');
     90        $('#nav-add-archive').attr('class', 'not-current');
    7991    });
    8092
  • wps-bidouille/trunk/readme.txt

    r3426272 r3448843  
    55Requires at least: 4.2
    66Tested up to: 6.8
    7 Stable tag: 1.33.2
     7Stable tag: 1.33.3
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    132132== Changelog ==
    133133
     134= 1.33.3 =
     135* Fix show add archive exclude from cache
     136
    134137= 1.33.2 =
    135138* Fix vulnerability (Thanks Legion Hunter - Patchstack) : Subscriber level user can inject any option field for option name "wps_display" via AJAX.
  • wps-bidouille/trunk/wps-bidouille.php

    r3426272 r3448843  
    66Author: WPServeur, NicolasKulka, Benoti, wpformation
    77Author URI: https://wpserveur.net
    8 Version: 1.33.2
     8Version: 1.33.3
    99Requires at least: 4.2
    1010Tested up to: 6.8
     
    2121
    2222// Plugin constants
    23 define( 'WPS_BIDOUILLE_VERSION', '1.33.2' );
     23define( 'WPS_BIDOUILLE_VERSION', '1.33.3' );
    2424define( 'WPS_BIDOUILLE_FOLDER', 'wps-bidouille' );
    2525define( 'WPS_BIDOUILLE_BASENAME', plugin_basename( __FILE__ ) );
Note: See TracChangeset for help on using the changeset viewer.