Changeset 2822490
- Timestamp:
- 11/23/2022 12:53:45 AM (3 years ago)
- Location:
- hide-wp-toolbar
- Files:
-
- 4 edited
- 1 copied
-
tags/2.5.6 (copied) (copied from hide-wp-toolbar/trunk)
-
tags/2.5.6/hide-wp-toolbar.php (modified) (2 diffs)
-
tags/2.5.6/readme.txt (modified) (4 diffs)
-
trunk/hide-wp-toolbar.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
hide-wp-toolbar/tags/2.5.6/hide-wp-toolbar.php
r2821803 r2822490 4 4 Plugin URI: http://blog.webguysaz.com/hide-wp-toolbar-wordpress-plugin/ 5 5 Description: The plugin adds a clickable button to the right side of the WordPress Toolbar that will show or hide the bar with nice transitions. 6 Version: 2.5. 56 Version: 2.5.6 7 7 Author: Web Guys 8 8 Author URI: http://webguysaz.com … … 54 54 if(!is_admin() && is_user_logged_in()){ 55 55 // Register the style for plugin 56 wp_enqueue_style( 'hide-wp-toolbar-style', plugins_url( 'style.css', __FILE__ ), array('dashicons'), '2.5. 5' );56 wp_enqueue_style( 'hide-wp-toolbar-style', plugins_url( 'style.css', __FILE__ ), array('dashicons'), '2.5.6' ); 57 57 } 58 58 } -
hide-wp-toolbar/tags/2.5.6/readme.txt
r2821803 r2822490 5 5 Tags: hide, toolbar, minimize, admin bar, toggle, adminbar 6 6 Requires at least: 3.8 7 Tested up to: 6.1 8 Stable tag: 2.5. 47 Tested up to: 6.1.1 8 Stable tag: 2.5.6 9 9 10 10 Easily hide or show the front-end WordPress Admin Toolbar with a click of a button. … … 14 14 Easily hide or show the front-end WordPress Admin Toolbar with a click of a button. The plugin adds a special button to the right side of the WordPress Admin Toolbar that only displays when you are outside the admin area of WordPress on the front-end. Clicking it will make the admin bar slide off the page to the top left corner, leaving only the hide/show button visible. Clicking the button again will restore the Toolbar to its original position. The shown/hidden position is remembered between page visits so that it can be kept hidden away until you are ready to bring it back. 15 15 16 There are no options or configuration. Just install and activate the plugin. When you exit the admin area, you will see the button to the far right of the Toolbar. Modern browsers (not IE9 or below) will use a nice transition to show and hide the Toolbar.16 There are no options or configuration. Just install and activate the plugin. When you exit the admin area, you will see the button to the far right of the Toolbar. 17 17 18 18 I actually like the WordPress Toolbar. It's a convenient way to go back and forth from the admin area to the public website. However, when I'm doing design modifications for a theme, the Toolbar can be visually distracting. I wanted a quick way to hide the WordPress Toolbar when needed, but otherwise keep it around. I tried several plugins but they didn't work as I wanted or didn't even work at all in some cases. So I decided to build my own. … … 33 33 Nope. No settings page is created. Just activate and start using. No configuration required. 34 34 35 = I don't see any of the nice transitions when the toolbar hides or shows. Why not? =35 = Why does the toolbar flash briefly between page loads when in a hidden state? = 36 36 37 You most likely have a very outdated browser, like Internet Explorer 9 or below. This plugin uses nice CSS3 transitions that are supported in all modern browsers, like [Chrome](http://google.com/chrome), [Firefox](http://firefox.com), [Safari](http://apple.com/safari), and [Microsoft Edge](https://www.microsoft.com/en-us/windows/microsoft-edge). 38 39 = Why don't you use jQuery UI for transitions instead? Then it would work on outdated browsers, right? = 40 41 I could. But it would be wrong. 37 The toolbar uses CSS to hide and since the toolbar always shows by default, there may be a brief moment where it appears before the CSS is fully loaded to hide it. This is standard behavior for CSS and applies to everything on the page. 42 38 43 39 == Screenshots == … … 47 43 48 44 == Changelog == 45 46 = 2.5.6 = 47 * Updated readme details and version number after additional testing 48 49 = 2.5.5 = 50 * Fixed toolbar state not saving between page loads (Github issue #7) 49 51 50 52 = 2.5.4 = -
hide-wp-toolbar/trunk/hide-wp-toolbar.php
r2821803 r2822490 4 4 Plugin URI: http://blog.webguysaz.com/hide-wp-toolbar-wordpress-plugin/ 5 5 Description: The plugin adds a clickable button to the right side of the WordPress Toolbar that will show or hide the bar with nice transitions. 6 Version: 2.5. 56 Version: 2.5.6 7 7 Author: Web Guys 8 8 Author URI: http://webguysaz.com … … 54 54 if(!is_admin() && is_user_logged_in()){ 55 55 // Register the style for plugin 56 wp_enqueue_style( 'hide-wp-toolbar-style', plugins_url( 'style.css', __FILE__ ), array('dashicons'), '2.5. 5' );56 wp_enqueue_style( 'hide-wp-toolbar-style', plugins_url( 'style.css', __FILE__ ), array('dashicons'), '2.5.6' ); 57 57 } 58 58 } -
hide-wp-toolbar/trunk/readme.txt
r2821803 r2822490 5 5 Tags: hide, toolbar, minimize, admin bar, toggle, adminbar 6 6 Requires at least: 3.8 7 Tested up to: 6.1 8 Stable tag: 2.5. 47 Tested up to: 6.1.1 8 Stable tag: 2.5.6 9 9 10 10 Easily hide or show the front-end WordPress Admin Toolbar with a click of a button. … … 14 14 Easily hide or show the front-end WordPress Admin Toolbar with a click of a button. The plugin adds a special button to the right side of the WordPress Admin Toolbar that only displays when you are outside the admin area of WordPress on the front-end. Clicking it will make the admin bar slide off the page to the top left corner, leaving only the hide/show button visible. Clicking the button again will restore the Toolbar to its original position. The shown/hidden position is remembered between page visits so that it can be kept hidden away until you are ready to bring it back. 15 15 16 There are no options or configuration. Just install and activate the plugin. When you exit the admin area, you will see the button to the far right of the Toolbar. Modern browsers (not IE9 or below) will use a nice transition to show and hide the Toolbar.16 There are no options or configuration. Just install and activate the plugin. When you exit the admin area, you will see the button to the far right of the Toolbar. 17 17 18 18 I actually like the WordPress Toolbar. It's a convenient way to go back and forth from the admin area to the public website. However, when I'm doing design modifications for a theme, the Toolbar can be visually distracting. I wanted a quick way to hide the WordPress Toolbar when needed, but otherwise keep it around. I tried several plugins but they didn't work as I wanted or didn't even work at all in some cases. So I decided to build my own. … … 33 33 Nope. No settings page is created. Just activate and start using. No configuration required. 34 34 35 = I don't see any of the nice transitions when the toolbar hides or shows. Why not? =35 = Why does the toolbar flash briefly between page loads when in a hidden state? = 36 36 37 You most likely have a very outdated browser, like Internet Explorer 9 or below. This plugin uses nice CSS3 transitions that are supported in all modern browsers, like [Chrome](http://google.com/chrome), [Firefox](http://firefox.com), [Safari](http://apple.com/safari), and [Microsoft Edge](https://www.microsoft.com/en-us/windows/microsoft-edge). 38 39 = Why don't you use jQuery UI for transitions instead? Then it would work on outdated browsers, right? = 40 41 I could. But it would be wrong. 37 The toolbar uses CSS to hide and since the toolbar always shows by default, there may be a brief moment where it appears before the CSS is fully loaded to hide it. This is standard behavior for CSS and applies to everything on the page. 42 38 43 39 == Screenshots == … … 47 43 48 44 == Changelog == 45 46 = 2.5.6 = 47 * Updated readme details and version number after additional testing 48 49 = 2.5.5 = 50 * Fixed toolbar state not saving between page loads (Github issue #7) 49 51 50 52 = 2.5.4 =
Note: See TracChangeset
for help on using the changeset viewer.