Plugin Directory

Changeset 3487707


Ignore:
Timestamp:
03/21/2026 10:11:21 AM (2 weeks ago)
Author:
magazine3
Message:

Table Numbers and Sticky TOC Not Rendering #948

Location:
easy-table-of-contents/tags/2.0.82.1
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • easy-table-of-contents/tags/2.0.82.1/README.txt

    r3487671 r3487707  
    137137= 2.0.82.1 21/03/2026 =
    138138* Fixed: Sticky TOC does not open after the latest update (version 2.0.82). #949
     139* Fixed: Table Numbers and Sticky TOC Not Rendering (Counter & Sticky Function Failure) #948
    139140
    140141= 2.0.82 20/03/2026 =
  • easy-table-of-contents/tags/2.0.82.1/changelog.txt

    r3487671 r3487707  
    22= 2.0.82.1 21/03/2026 =
    33* Fixed: Sticky TOC does not open after the latest update (version 2.0.82). #949
     4* Fixed: Table Numbers and Sticky TOC Not Rendering (Counter & Sticky Function Failure) #948
    45
    56= 2.0.82 20/03/2026 =
  • easy-table-of-contents/tags/2.0.82.1/easy-table-of-contents.php

    r3487671 r3487707  
    931931                    $css = '';
    932932                    $css = self::inline_counting_css( ezTOC_Option::get( 'heading-text-direction', 'ltr' ), 'ez-toc-sticky-toggle-direction', 'ez-toc-sticky-toggle-counter', 'counter', 'ez-toc-sticky-container' );
    933                     wp_add_inline_style( 'ez-toc-sticky', $css );
     933                    wp_add_inline_style( 'eztoc-sticky', $css );
    934934                }
    935935            }                                                             
     
    951951                    $css .= self::inline_counting_css( ezTOC_Option::get( 'heading-text-direction', 'ltr' ) );
    952952                    $css .= self::inline_counting_css( ezTOC_Option::get( 'heading-text-direction', 'ltr' ),'ez-toc-widget-direction','ez-toc-widget-container', 'counter', 'ez-toc-widget-container' );                   
    953                     wp_add_inline_style( 'ez-toc', $css );
     953                    wp_add_inline_style( 'eztoc', $css );
    954954                }
    955955            }
  • easy-table-of-contents/tags/2.0.82.1/includes/class-eztoc-widgetsticky.php

    r3487671 r3487707  
    492492                wp_enqueue_style ( 'eztoc-widget-sticky', EZ_TOC_URL . "assets/css/ez-toc-widget-sticky$min.css", array(), $widgetCSSVersion );
    493493
    494                 wp_add_inline_style ( 'eztoc-widget-sticky', ezTOC::inline_counting_css ( ezTOC_Option::get ( 'heading-text-direction', 'ltr' ), 'eztoc-widget-sticky-direction', 'eztoc-widget-sticky-container', 'counter', 'eztoc-widget-sticky-container' ) );
     494                wp_add_inline_style ( 'eztoc-widget-sticky', ezTOC::inline_counting_css ( ezTOC_Option::get ( 'heading-text-direction', 'ltr' ), 'ez-toc-widget-sticky-direction', 'ez-toc-widget-sticky-container', 'counter', 'ez-toc-widget-sticky-container' ) );
    495495               
    496496                $widgetJSVersion = ezTOC::VERSION . '-' . filemtime ( EZ_TOC_PATH . DIRECTORY_SEPARATOR . "assets" . DIRECTORY_SEPARATOR . "js" . DIRECTORY_SEPARATOR . "ez-toc-widget-sticky$min.js" );
Note: See TracChangeset for help on using the changeset viewer.