🔒 EXCLUSIVE: Changeset/ - Collection

Changeset 3271225


Ignore:
Timestamp:
04/11/2025 06:58:13 PM (9 months ago)
Author:
roundupwp
Message:
  • Fix: Prevented some of the admin CSS and JS files for the plugin being loaded on pages that were not related to the Events Calendar or Registrations for the Events Calendar.
Location:
registrations-for-the-events-calendar
Files:
143 added
3 edited

Legend:

Unmodified
Added
Removed
  • registrations-for-the-events-calendar/trunk/inc/admin/admin-functions.php

    r3150239 r3271225  
    11921192            wp_enqueue_style( 'tribe-jquery-timepicker-css' );
    11931193
    1194     } else {
     1194    } elseif ( ( isset( $_GET['post_type'] ) && $_GET['post_type'] === 'tribe_events' ) ||
     1195               ( isset( $_GET['post'] ) && get_post_type( $_GET['post'] ) === 'tribe_events' ) ) {
    11951196        wp_enqueue_script( 'rtec_admin_edit_event_scripts', trailingslashit( RTEC_PLUGIN_URL ) . 'js/rtec-admin-edit-event-scripts.js', array( 'jquery' ), RTEC_VERSION, false );
    11961197        wp_enqueue_script( 'jquery-ui-datepicker' );
  • registrations-for-the-events-calendar/trunk/readme.txt

    r3242177 r3271225  
    77Tested up to: 6.7
    88Requires PHP: 7.4
    9 Stable tag: 2.13.4
     9Stable tag: 2.13.5
    1010License: GPLv2 or later
    1111License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    202202
    203203== Changelog ==
     204= 2.13.5 =
     205* Fix: Prevented some of the admin CSS and JS files for the plugin being loaded on pages that were not related to the Events Calendar or Registrations for the Events Calendar.
     206
    204207= 2.13.4 =
    205208* Fix: Fixed PHP warning "Undefined property: RTEC_Form::$event_id" when using the log-in form for logged-out visitors when the event is for logged-in users only.
  • registrations-for-the-events-calendar/trunk/registrations-for-the-events-calendar.php

    r3242177 r3271225  
    33Plugin Name: Registrations for The Events Calendar
    44Description: Collect and manage event registrations with a customizable form and email template. This plugin requires The Events Calendar by Modern Tribe to work.
    5 Version: 2.13.4
     5Version: 2.13.5
    66Author: Roundup WP
    77Author URI: roundupwp.com
     
    3838// Plugin version.
    3939if ( ! defined( 'RTEC_VERSION' ) ) {
    40     define( 'RTEC_VERSION', '2.13.4' );
     40    define( 'RTEC_VERSION', '2.13.5' );
    4141}
    4242// Plugin Folder Path.
Note: See TracChangeset for help on using the changeset viewer.