Changeset 3257211
- Timestamp:
- 03/17/2025 02:41:41 PM (12 months ago)
- Location:
- smooth-back-to-top-button
- Files:
-
- 25 added
- 3 edited
-
tags/1.1.15 (added)
-
tags/1.1.15/admin (added)
-
tags/1.1.15/admin/assets (added)
-
tags/1.1.15/admin/assets/img (added)
-
tags/1.1.15/admin/assets/img/wvpd-icon.gif (added)
-
tags/1.1.15/admin/class-sbttb_plugin_installer.php (added)
-
tags/1.1.15/admin/class-sbttb_settings.php (added)
-
tags/1.1.15/admin/class-sbttb_settings_api.php (added)
-
tags/1.1.15/assets (added)
-
tags/1.1.15/assets/css (added)
-
tags/1.1.15/assets/css/sbttb-fonts.css (added)
-
tags/1.1.15/assets/css/smooth-back-to-top-button.css (added)
-
tags/1.1.15/assets/fonts (added)
-
tags/1.1.15/assets/fonts/wpxpress.eot (added)
-
tags/1.1.15/assets/fonts/wpxpress.svg (added)
-
tags/1.1.15/assets/fonts/wpxpress.ttf (added)
-
tags/1.1.15/assets/fonts/wpxpress.woff (added)
-
tags/1.1.15/assets/js (added)
-
tags/1.1.15/assets/js/smooth-back-to-top-button.js (added)
-
tags/1.1.15/index.php (added)
-
tags/1.1.15/languages (added)
-
tags/1.1.15/languages/smooth-back-to-top-button.pot (added)
-
tags/1.1.15/readme.txt (added)
-
tags/1.1.15/smooth-back-to-top-button.php (added)
-
tags/1.1.15/uninstall.php (added)
-
trunk/admin/class-sbttb_settings_api.php (modified) (1 diff)
-
trunk/readme.txt (modified) (4 diffs)
-
trunk/smooth-back-to-top-button.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
smooth-back-to-top-button/trunk/admin/class-sbttb_settings_api.php
r2948704 r3257211 121 121 if ( isset( $section['desc'] ) && ! empty( $section['desc'] ) ) { 122 122 $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'] ) ); }; 124 124 } else if ( isset( $section['callback'] ) ) { 125 125 $callback = $section['callback']; -
smooth-back-to-top-button/trunk/readme.txt
r3070421 r3257211 2 2 Contributors: tanvirul 3 3 Donate 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 button4 Tags: scroll to top, back to top, back to top button, scroll top, scroll up, wordpress scroll top, scroll back to top, scroll progress indicator 5 5 Requires PHP: 7.4 6 6 Requires at least: 4.8 7 Tested up to: 6. 58 Stable tag: 1.1.1 47 Tested up to: 6.7 8 Stable tag: 1.1.15 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 14 14 == Description == 15 15 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.16 The WordPress Back To Top button with scroll progress indicator will allow your visitors to easily scroll back to the top of the page. 17 17 18 It’s a lightweight and **fully customizable**plugin that gives you lots of features such as:18 It’s a lightweight and fully customizable plugin that gives you lots of features such as: 19 19 20 20 = Features: = 21 21 * 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. 23 23 * Ready to use without any setup. 24 * S croll progress indicator.24 * Smooth scroll progress indicator. 25 25 * Change scroll duration. 26 26 * Change button offset. … … 32 32 * Progress Enable/Disable. 33 33 * Custom size for button and icon. 34 * Custom CSS support.34 * Custom back to top button CSS support. 35 35 * Show/Hide on small devices. 36 36 * Async JavaScript. … … 85 85 == Changelog == 86 86 87 = 1.1.15 = 88 * Add - WordPress 6.7+ compatibility. 89 * Fix - Admin settings panel. 90 87 91 = 1.1.14 = 88 92 * Add - WordPress 6.5+ compatibility. -
smooth-back-to-top-button/trunk/smooth-back-to-top-button.php
r3070421 r3257211 6 6 Author: Tanvirul Haque 7 7 Author URI: https://wpxpress.net/ 8 Version: 1.1.1 48 Version: 1.1.15 9 9 Requires PHP: 7.4 10 10 Requires at least: 4.8 11 Tested up to: 6. 511 Tested up to: 6.7 12 12 Text Domain: smooth-back-to-top-button 13 13 Domain Path: /languages … … 34 34 * @var string 35 35 */ 36 public $version = '1.1.1 4';36 public $version = '1.1.15'; 37 37 38 38 /**
Note: See TracChangeset
for help on using the changeset viewer.