Changeset 3372750
- Timestamp:
- 10/04/2025 08:26:45 AM (6 months ago)
- Location:
- quickpick
- Files:
-
- 6 deleted
- 4 edited
- 1 copied
-
tags/1.0.2 (copied) (copied from quickpick/trunk)
-
tags/1.0.2/README.md (deleted)
-
tags/1.0.2/quickpick.php (modified) (4 diffs)
-
tags/1.0.2/readme.txt (modified) (2 diffs)
-
tags/1.0.2/screenshot-1.png (deleted)
-
tags/1.0.2/screenshot-2.png (deleted)
-
trunk/README.md (deleted)
-
trunk/quickpick.php (modified) (4 diffs)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/screenshot-1.png (deleted)
-
trunk/screenshot-2.png (deleted)
Legend:
- Unmodified
- Added
- Removed
-
quickpick/tags/1.0.2/quickpick.php
r2816813 r3372750 4 4 * Plugin URI: https://wordpress.org/plugins/quickpick 5 5 * Description: QuickPick is a tiny WordPress plugin that will help you to save time on finding just recently editing posts. 6 * Version: 1.0. 17 * Author: Alex Samarschi6 * Version: 1.0.2 7 * Author: Alexei Samarschi 8 8 * Author URI: https://profiles.wordpress.org/alexus450/ 9 9 * License: GPL v2 or later … … 11 11 * Text Domain: quickpick 12 12 * Domain Path: /languages 13 * Requires at least: 5.0 14 * Requires PHP: 5.6 15 * Tested up to: 6.8 16 * Update URI: https://wordpress.org/plugins/quickpick/ 13 17 */ 14 18 … … 141 145 } 142 146 147 $desc = '<small>' . esc_html__( 'this page is set as homepage', 'quickpick' ) . '</small>'; 148 $frontpage_id = get_option( 'page_on_front' ); 149 if( empty( $frontpage_id ) ) { 150 $desc = ''; 151 } 152 143 153 $out = '<label class="qp-dropdown"> 144 154 <div class="qp-button">QuikPick</div> 145 155 <input type="checkbox" class="qp-input" id="quickpick-input"> 146 156 <ul class="qp-menu"> 147 <li class="homepage-link">' . $this->get_frontpage_edit_link() . '<small>' . esc_html__( 'this page is set as homepage', 'quickpick' ) . '</small></li>157 <li class="homepage-link">' . $this->get_frontpage_edit_link() . $desc . '</li> 148 158 <li>' . $this->last_updated_pages() . '</li> 149 159 <li class="divider"></li> … … 284 294 position: absolute; 285 295 top: 100%; 286 border-radius: 4px;296 border-radius: 5px; 287 297 padding: 0; 288 298 margin: 2px 0 0 0; 289 box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);299 box-shadow: 1px 2px 5px 1px rgba(178.5, 178.5, 178.5, 0.5607843137254902); 290 300 background-color: #ffffff; 291 301 list-style-type: none; -
quickpick/tags/1.0.2/readme.txt
r2816815 r3372750 3 3 Donate link: http://paypal.me/gt330/5usd 4 4 Tags: quick edit, edit post, edit page, recently, edited 5 Requires at least: 5. 56 Tested up to: 6.1 7 Requires PHP: 7.2 8 Stable tag: 1.0. 15 Requires at least: 5.0 6 Requires PHP: 5.6 7 Tested up to: 6.8 8 Stable tag: 1.0.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.txt 11 11 12 QuickPick is a tiny WordPress plugin will help you to save time on finding recently editingposts or pages.12 QuickPick is a tiny WordPress plugin that will help you save time on finding recently edited posts or pages. 13 13 14 14 == Description == 15 15 16 QuickPick will display your last 5 edited posts or pages so you can access and edit them.16 QuickPick displays your last 5 edited posts or pages in a convenient dropdown menu, allowing you to quickly jump to content you've been working on. Perfect for content creators, editors, and developers who frequently edit multiple posts or pages. 17 17 18 **Key Features:** 19 * Quick access to recently edited posts and pages 20 * Clean, intuitive dropdown interface 21 * Homepage link integration for pages 22 * Lightweight and fast 23 * No configuration required 18 24 19 == Why was this plugin created? == 20 21 This plugin was created to save time to find the just recently edit page or post, in case you need to modify/edit it again. 25 **Perfect for:** 26 * Content creators who work on multiple posts 27 * Editors managing various pages 28 * Developers who frequently edit content 29 * Anyone who wants to save time navigating WordPress admin 22 30 23 31 … … 26 34 1. Install QuickPick either via the Plugins > Add New page in your WordPress Dashboard, or by downloading the plugin and uploading the file in Plugins > Add New. 27 35 28 2. After activating QuickPick, a button will appear in the Post/Page Quick Links menu.36 2. After activating QuickPick, a "QuickPick" button will appear in the Post/Page admin list views. 29 37 38 3. Click the button to see your recently edited content and quickly jump to edit any item. 39 40 == Frequently Asked Questions == 41 42 = Does this plugin work with custom post types? = 43 44 Currently, QuickPick works with standard posts and pages. Custom post type support may be added in future versions. 45 46 = How many items does QuickPick show? = 47 48 QuickPick displays the last 5 edited posts or pages by default. 49 50 = Does QuickPick affect site performance? = 51 52 No, QuickPick is lightweight and only loads when you're in the WordPress admin area. It has minimal impact on your site's performance. 53 54 = Is QuickPick compatible with WordPress multisite? = 55 56 Yes, QuickPick works with both single-site and multisite WordPress installations. 30 57 31 58 == Screenshots == 32 59 33 1. Posts list with the quickpick button34 2. Pages list with the quickpick button60 1. Posts list with the QuickPick button 61 2. Pages list with the QuickPick button showing homepage link 35 62 36 63 == Changelog == 64 65 = 1.0.2 = 66 * Minor fixes 67 * Compatibility WordPress Version 6.8 37 68 38 69 = 1.0.1 = -
quickpick/trunk/quickpick.php
r2816813 r3372750 4 4 * Plugin URI: https://wordpress.org/plugins/quickpick 5 5 * Description: QuickPick is a tiny WordPress plugin that will help you to save time on finding just recently editing posts. 6 * Version: 1.0. 17 * Author: Alex Samarschi6 * Version: 1.0.2 7 * Author: Alexei Samarschi 8 8 * Author URI: https://profiles.wordpress.org/alexus450/ 9 9 * License: GPL v2 or later … … 11 11 * Text Domain: quickpick 12 12 * Domain Path: /languages 13 * Requires at least: 5.0 14 * Requires PHP: 5.6 15 * Tested up to: 6.8 16 * Update URI: https://wordpress.org/plugins/quickpick/ 13 17 */ 14 18 … … 141 145 } 142 146 147 $desc = '<small>' . esc_html__( 'this page is set as homepage', 'quickpick' ) . '</small>'; 148 $frontpage_id = get_option( 'page_on_front' ); 149 if( empty( $frontpage_id ) ) { 150 $desc = ''; 151 } 152 143 153 $out = '<label class="qp-dropdown"> 144 154 <div class="qp-button">QuikPick</div> 145 155 <input type="checkbox" class="qp-input" id="quickpick-input"> 146 156 <ul class="qp-menu"> 147 <li class="homepage-link">' . $this->get_frontpage_edit_link() . '<small>' . esc_html__( 'this page is set as homepage', 'quickpick' ) . '</small></li>157 <li class="homepage-link">' . $this->get_frontpage_edit_link() . $desc . '</li> 148 158 <li>' . $this->last_updated_pages() . '</li> 149 159 <li class="divider"></li> … … 284 294 position: absolute; 285 295 top: 100%; 286 border-radius: 4px;296 border-radius: 5px; 287 297 padding: 0; 288 298 margin: 2px 0 0 0; 289 box-shadow: 0 0 6px 0 rgba(0,0,0,0.1);299 box-shadow: 1px 2px 5px 1px rgba(178.5, 178.5, 178.5, 0.5607843137254902); 290 300 background-color: #ffffff; 291 301 list-style-type: none; -
quickpick/trunk/readme.txt
r2816815 r3372750 3 3 Donate link: http://paypal.me/gt330/5usd 4 4 Tags: quick edit, edit post, edit page, recently, edited 5 Requires at least: 5. 56 Tested up to: 6.1 7 Requires PHP: 7.2 8 Stable tag: 1.0. 15 Requires at least: 5.0 6 Requires PHP: 5.6 7 Tested up to: 6.8 8 Stable tag: 1.0.2 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.txt 11 11 12 QuickPick is a tiny WordPress plugin will help you to save time on finding recently editingposts or pages.12 QuickPick is a tiny WordPress plugin that will help you save time on finding recently edited posts or pages. 13 13 14 14 == Description == 15 15 16 QuickPick will display your last 5 edited posts or pages so you can access and edit them.16 QuickPick displays your last 5 edited posts or pages in a convenient dropdown menu, allowing you to quickly jump to content you've been working on. Perfect for content creators, editors, and developers who frequently edit multiple posts or pages. 17 17 18 **Key Features:** 19 * Quick access to recently edited posts and pages 20 * Clean, intuitive dropdown interface 21 * Homepage link integration for pages 22 * Lightweight and fast 23 * No configuration required 18 24 19 == Why was this plugin created? == 20 21 This plugin was created to save time to find the just recently edit page or post, in case you need to modify/edit it again. 25 **Perfect for:** 26 * Content creators who work on multiple posts 27 * Editors managing various pages 28 * Developers who frequently edit content 29 * Anyone who wants to save time navigating WordPress admin 22 30 23 31 … … 26 34 1. Install QuickPick either via the Plugins > Add New page in your WordPress Dashboard, or by downloading the plugin and uploading the file in Plugins > Add New. 27 35 28 2. After activating QuickPick, a button will appear in the Post/Page Quick Links menu.36 2. After activating QuickPick, a "QuickPick" button will appear in the Post/Page admin list views. 29 37 38 3. Click the button to see your recently edited content and quickly jump to edit any item. 39 40 == Frequently Asked Questions == 41 42 = Does this plugin work with custom post types? = 43 44 Currently, QuickPick works with standard posts and pages. Custom post type support may be added in future versions. 45 46 = How many items does QuickPick show? = 47 48 QuickPick displays the last 5 edited posts or pages by default. 49 50 = Does QuickPick affect site performance? = 51 52 No, QuickPick is lightweight and only loads when you're in the WordPress admin area. It has minimal impact on your site's performance. 53 54 = Is QuickPick compatible with WordPress multisite? = 55 56 Yes, QuickPick works with both single-site and multisite WordPress installations. 30 57 31 58 == Screenshots == 32 59 33 1. Posts list with the quickpick button34 2. Pages list with the quickpick button60 1. Posts list with the QuickPick button 61 2. Pages list with the QuickPick button showing homepage link 35 62 36 63 == Changelog == 64 65 = 1.0.2 = 66 * Minor fixes 67 * Compatibility WordPress Version 6.8 37 68 38 69 = 1.0.1 =
Note: See TracChangeset
for help on using the changeset viewer.