Plugin Directory

Changeset 3257211


Ignore:
Timestamp:
03/17/2025 02:41:41 PM (12 months ago)
Author:
tanvirul
Message:

Release 1.1.15

Location:
smooth-back-to-top-button
Files:
25 added
3 edited

Legend:

Unmodified
Added
Removed
  • smooth-back-to-top-button/trunk/admin/class-sbttb_settings_api.php

    r2948704 r3257211  
    121121                if ( isset( $section['desc'] ) && ! empty( $section['desc'] ) ) {
    122122                    $section['desc'] = '<div class="inside">' . $section['desc'] . '</div>';
    123                     $callback        = function() use ( $section ) { echo str_replace( '"', '\"', $section['desc'] ); };
     123                    $callback        = function() use ( $section ) { echo wp_kses_post( str_replace( '"', '\"', $section['desc'] ) ); };
    124124                } else if ( isset( $section['callback'] ) ) {
    125125                    $callback = $section['callback'];
  • smooth-back-to-top-button/trunk/readme.txt

    r3070421 r3257211  
    22Contributors: tanvirul
    33Donate link:
    4 Tags: scroll to top, back to top, scroll top, scroll up, wordpress scroll top, scroll back to top, scroll progress indicator, back to top button
     4Tags: scroll to top, back to top, back to top button, scroll top, scroll up, wordpress scroll top, scroll back to top, scroll progress indicator
    55Requires PHP: 7.4
    66Requires at least: 4.8
    7 Tested up to: 6.5
    8 Stable tag: 1.1.14
     7Tested up to: 6.7
     8Stable tag: 1.1.15
    99License: GPLv2 or later
    1010License URI: https://www.gnu.org/licenses/gpl-2.0.html
     
    1414== Description ==
    1515
    16 The Smooth **Back To Top** button with **Scroll Progress Indicator** will allow your visitors to easily scroll back to the top of the page.
     16The WordPress Back To Top button with scroll progress indicator will allow your visitors to easily scroll back to the top of the page.
    1717
    18 It’s a lightweight and **fully customizable** plugin that gives you lots of features such as:
     18It’s a lightweight and fully customizable plugin that gives you lots of features such as:
    1919
    2020= Features: =
    2121* Button shows when the user scrolls down the page.
    22 * Scroll back to top with smooth animation.
     22* Scroll back to top button with smooth animation.
    2323* Ready to use without any setup.
    24 * Scroll progress indicator.
     24* Smooth scroll progress indicator.
    2525* Change scroll duration.
    2626* Change button offset.
     
    3232* Progress Enable/Disable.
    3333* Custom size for button and icon.
    34 * Custom CSS support.
     34* Custom back to top button CSS support.
    3535* Show/Hide on small devices.
    3636* Async JavaScript.
     
    8585== Changelog ==
    8686
     87= 1.1.15 =
     88* Add - WordPress 6.7+ compatibility.
     89* Fix - Admin settings panel.
     90
    8791= 1.1.14 =
    8892* Add - WordPress 6.5+ compatibility.
  • smooth-back-to-top-button/trunk/smooth-back-to-top-button.php

    r3070421 r3257211  
    66Author: Tanvirul Haque
    77Author URI: https://wpxpress.net/
    8 Version: 1.1.14
     8Version: 1.1.15
    99Requires PHP: 7.4
    1010Requires at least: 4.8
    11 Tested up to: 6.5
     11Tested up to: 6.7
    1212Text Domain: smooth-back-to-top-button
    1313Domain Path: /languages
     
    3434         * @var  string
    3535         */
    36         public $version = '1.1.14';
     36        public $version = '1.1.15';
    3737
    3838        /**
Note: See TracChangeset for help on using the changeset viewer.